diff options
author | João Marcos Gris <joaomarcosgris@hotmail.com> | 2019-07-25 22:50:35 -0300 |
---|---|---|
committer | João Marcos Gris <joaomarcosgris@hotmail.com> | 2019-07-25 22:50:35 -0300 |
commit | aaa14dd9f4bbbce5ad16c2a40dc9275e13b5f3e9 (patch) | |
tree | 4379b720c40ca1c5e4adf27a6c652a1fe79a1223 | |
parent | 702c357536c23d8122fe152f0d86b9add1add6a0 (diff) | |
download | numpy-aaa14dd9f4bbbce5ad16c2a40dc9275e13b5f3e9.tar.gz |
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` |