summaryrefslogtreecommitdiff
path: root/numpy/lib/shape_base.py
diff options
context:
space:
mode:
authoredschofield <edschofield@localhost>2007-05-24 18:31:28 +0000
committeredschofield <edschofield@localhost>2007-05-24 18:31:28 +0000
commit57ccbf2ceac4a401afc9dae735f3a1739e5a0edb (patch)
treea10d3aa0c87cbf434b5eaec837e6a426887e0f99 /numpy/lib/shape_base.py
parent01900f628194622750d17cc6f65a484c8c2f2f93 (diff)
downloadnumpy-57ccbf2ceac4a401afc9dae735f3a1739e5a0edb.tar.gz
Fix docstring typo for vstack()
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r--numpy/lib/shape_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/shape_base.py b/numpy/lib/shape_base.py
index d061ee774..2f9ecfa26 100644
--- a/numpy/lib/shape_base.py
+++ b/numpy/lib/shape_base.py
@@ -184,7 +184,7 @@ def vstack(tup):
""" Stack arrays in sequence vertically (row wise)
Description:
- Take a sequence of arrays and stack them veritcally
+ Take a sequence of arrays and stack them vertically
to make a single array. All arrays in the sequence
must have the same shape along all but the first axis.
vstack will rebuild arrays divided by vsplit.