diff options
author | marload <rladhkstn8@gmail.com> | 2020-07-14 12:51:37 +0900 |
---|---|---|
committer | marload <rladhkstn8@gmail.com> | 2020-07-14 12:51:37 +0900 |
commit | 7d7e446fcbeeff70d905bde2eb0264a797488280 (patch) | |
tree | a4ee377d7efdd9a8f9d081c34e10210b042d814f /numpy/core | |
parent | 89a045d6a9f9cadead3a2bc9b3ea9eba46c1206f (diff) | |
download | numpy-7d7e446fcbeeff70d905bde2eb0264a797488280.tar.gz |
DOC: Fix Typo
Diffstat (limited to 'numpy/core')
-rw-r--r-- | numpy/core/_add_newdocs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/_add_newdocs.py b/numpy/core/_add_newdocs.py index 2461971eb..a3c404a64 100644 --- a/numpy/core/_add_newdocs.py +++ b/numpy/core/_add_newdocs.py @@ -1122,13 +1122,13 @@ add_newdoc('numpy.core.multiarray', 'compare_chararrays', add_newdoc('numpy.core.multiarray', 'fromiter', """ - fromiter(iterable, dtype, count=-1) + fromiter(iter, dtype, count=-1) Create a new 1-dimensional array from an iterable object. Parameters ---------- - iterable : iterable object + iter : iterable object An iterable object providing data for the array. dtype : data-type The data-type of the returned array. |