summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/shape_base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/shape_base.py b/numpy/core/shape_base.py
index 15f188792..13eadd988 100644
--- a/numpy/core/shape_base.py
+++ b/numpy/core/shape_base.py
@@ -187,10 +187,10 @@ def vstack(tup):
concatenate : Join a sequence of arrays together.
vsplit : Split array into a list of multiple sub-arrays vertically.
-
Notes
-----
- Equivalent to ``np.concatenate(tup, axis=0)``
+ Equivalent to ``np.concatenate(tup, axis=0)`` if `tup` contains arrays that
+ are at least 2-dimensional.
Examples
--------