summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorNiko Savola <niko.savola@aalto.fi>2021-07-14 19:17:02 +0300
committerGitHub <noreply@github.com>2021-07-14 19:17:02 +0300
commit64e62ef69babccb36cb2ee014225c6845b163c0e (patch)
tree5057a796d6cdef26ddb61c3db9625fc1f6fe18f0 /numpy/core/fromnumeric.py
parent89c80ba606f4346f8df2a31cfcc0e967045a68ed (diff)
downloadnumpy-64e62ef69babccb36cb2ee014225c6845b163c0e.tar.gz
DOC: fix see also references in numpy.resize (#19475)
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r--numpy/core/fromnumeric.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py
index 7164a2c28..764377bc9 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -1408,9 +1408,9 @@ def resize(a, new_shape):
See Also
--------
- np.reshape : Reshape an array without changing the total size.
- np.pad : Enlarge and pad an array.
- np.repeat : Repeat elements of an array.
+ numpy.reshape : Reshape an array without changing the total size.
+ numpy.pad : Enlarge and pad an array.
+ numpy.repeat : Repeat elements of an array.
ndarray.resize : resize an array in-place.
Notes