diff options
Diffstat (limited to 'numpy/lib/shape_base.py')
-rw-r--r-- | numpy/lib/shape_base.py | 2 |
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. |