diff options
author | Chris Ball <ceball@gmail.com> | 2014-02-13 17:18:46 +0000 |
---|---|---|
committer | Chris Ball <ceball@gmail.com> | 2014-02-13 17:18:46 +0000 |
commit | f02ed1a95cab2f9d4d002abf0bc4d76df89548a7 (patch) | |
tree | 5d7deb18e3a7c851c69cdf21c5050c6bac2704c0 /numpy/lib/shape_base.py | |
parent | f57c77b88a735d5f49a407881777ff2e9f3b1be2 (diff) | |
download | numpy-f02ed1a95cab2f9d4d002abf0bc4d76df89548a7.tar.gz |
DOC: Fix typo in a dsplit() error message.
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 4fdaba349..c299c1976 100644 --- a/numpy/lib/shape_base.py +++ b/numpy/lib/shape_base.py @@ -638,7 +638,7 @@ def dsplit(ary, indices_or_sections): """ if len(_nx.shape(ary)) < 3: - raise ValueError('vsplit only works on arrays of 3 or more dimensions') + raise ValueError('dsplit only works on arrays of 3 or more dimensions') return split(ary, indices_or_sections, 2) def get_array_prepare(*args): |