summaryrefslogtreecommitdiff
path: root/numpy/lib/index_tricks.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-05-12 00:43:16 -0400
committerCharles Harris <charlesr.harris@gmail.com>2015-05-12 00:43:16 -0400
commit18c89dbf87929e68479b2272ad7ab4b321120773 (patch)
tree3b28678347cdc06a3b201d46b0877f6e0cce1975 /numpy/lib/index_tricks.py
parentfb6426b3d9b25f5f7a8324fa1d9bab3f4c23dd95 (diff)
parent93d3b8dedc5cd602c867a234f07188fe5bd5479b (diff)
downloadnumpy-18c89dbf87929e68479b2272ad7ab4b321120773.tar.gz
Merge pull request #5605 from shoyer/stack
ENH: add np.stack
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r--numpy/lib/index_tricks.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py
index 752407f18..030261dee 100644
--- a/numpy/lib/index_tricks.py
+++ b/numpy/lib/index_tricks.py
@@ -404,7 +404,7 @@ class RClass(AxisConcatenator):
See Also
--------
- concatenate : Join a sequence of arrays together.
+ concatenate : Join a sequence of arrays along an existing axis.
c_ : Translates slice objects to concatenation along the second axis.
Examples