diff options
author | Ralf Gommers <ralf.gommers@gmail.com> | 2019-07-25 19:35:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-25 19:35:45 -0700 |
commit | 544094aed5fdca536b300d0820fe41f22729ec66 (patch) | |
tree | 99910a947533c5501808ed791c6d03c0acafd5e5 | |
parent | c0868502a06cd3d5ef6492ac13499ee9028007df (diff) | |
parent | aaa14dd9f4bbbce5ad16c2a40dc9275e13b5f3e9 (diff) | |
download | numpy-544094aed5fdca536b300d0820fe41f22729ec66.tar.gz |
Merge pull request #14130 from joaomarcosgris/small-typo-quickstart-doc
DOC: Fix small typo in quickstart docs
-rw-r--r-- | doc/source/user/quickstart.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/quickstart.rst b/doc/source/user/quickstart.rst index 772625372..a23a7b2c7 100644 --- a/doc/source/user/quickstart.rst +++ b/doc/source/user/quickstart.rst @@ -734,7 +734,7 @@ stacks 1D arrays as columns into a 2D array. It is equivalent to On the other hand, the function `ma.row_stack` is equivalent to `vstack` for any input arrays. -In general, for arrays of with more than two dimensions, +In general, for arrays with more than two dimensions, `hstack` stacks along their second axes, `vstack` stacks along their first axes, and `concatenate` |