diff options
author | Ralf Gommers <ralf.gommers@googlemail.com> | 2015-01-24 14:20:55 +0100 |
---|---|---|
committer | Ralf Gommers <ralf.gommers@googlemail.com> | 2015-01-24 14:20:55 +0100 |
commit | add0881d31abd32e48e68fbdb904723bc7014838 (patch) | |
tree | ebd5743a92e54af31e5ef6f05fcaa04c77bc3603 /numpy/add_newdocs.py | |
parent | 54ebec335384ec1d6f8e65bdd35c4f359797dc0b (diff) | |
parent | 76e6aa6bbb063992368aca4a622bb2ba31526fc8 (diff) | |
download | numpy-add0881d31abd32e48e68fbdb904723bc7014838.tar.gz |
Merge pull request #5498 from abdulmuneer/master
DOC: Fixing help documentation error in numpy.zeros. Fixes #5497
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index 72aaf5ec7..68af61ff6 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -885,7 +885,7 @@ add_newdoc('numpy.core.multiarray', 'zeros', >>> np.zeros(5) array([ 0., 0., 0., 0., 0.]) - >>> np.zeros((5,), dtype=numpy.int) + >>> np.zeros((5,), dtype=np.int) array([0, 0, 0, 0, 0]) >>> np.zeros((2, 1)) |