diff options
author | Bas van Beek <43369155+BvB93@users.noreply.github.com> | 2020-10-01 18:23:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 09:23:53 -0700 |
commit | 57adb4bb6a8eb46fed597d4a781e47bcb86ebe11 (patch) | |
tree | c4a730c8fe8cb0a2f5e1d021fbdc4153a9514450 /numpy/core/multiarray.py | |
parent | e695dd02a5c3c9cb0ebea8eebc72915af9deebdf (diff) | |
download | numpy-57adb4bb6a8eb46fed597d4a781e47bcb86ebe11.tar.gz |
DOC: Fix a parameter type in the `putmask` docs (#17412)
Diffstat (limited to 'numpy/core/multiarray.py')
-rw-r--r-- | numpy/core/multiarray.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py index 540d1ea9b..6b335f1a6 100644 --- a/numpy/core/multiarray.py +++ b/numpy/core/multiarray.py @@ -1100,7 +1100,7 @@ def putmask(a, mask, values): Parameters ---------- - a : array_like + a : ndarray Target array. mask : array_like Boolean mask array. It has to be the same shape as `a`. |