diff options
author | Matti Picus <matti.picus@gmail.com> | 2020-07-12 23:37:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-12 23:37:26 +0300 |
commit | e9300832dd6f9fb24d70a32f836f0189cbef9df5 (patch) | |
tree | 6b8edcc3af1bd553aea711da4c20406bd1dc4781 /numpy/lib/index_tricks.py | |
parent | 01b2e2a95ba417f44d7fb0ddc7136b3117e35536 (diff) | |
parent | 088364bd1b6f64872487bf44eaaf1ec765592fa2 (diff) | |
download | numpy-e9300832dd6f9fb24d70a32f836f0189cbef9df5.tar.gz |
Merge pull request #16821 from rohitsanj/document-ndindex
DOC: fix inconsistent parameter name in np.ndindex docstring
Diffstat (limited to 'numpy/lib/index_tricks.py')
-rw-r--r-- | numpy/lib/index_tricks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/index_tricks.py b/numpy/lib/index_tricks.py index e86c7a7bb..cba713ede 100644 --- a/numpy/lib/index_tricks.py +++ b/numpy/lib/index_tricks.py @@ -611,7 +611,7 @@ class ndindex: Parameters ---------- - `*args` : ints, or a single tuple of ints + shape : ints, or a single tuple of ints The size of each dimension of the array can be passed as individual parameters or as the elements of a tuple. |