summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorPierre <pierreloicq@gmail.com>2023-03-07 14:28:55 +0100
committerGitHub <noreply@github.com>2023-03-07 10:28:55 -0300
commite82af22dd1d7c01329b640f1fb6cdee6b1169898 (patch)
tree583d89838edaaa409a1aa4d133a856fdd4d91120 /numpy/core/fromnumeric.py
parent25010c16edbe54ac9449ccac9d8f1da0c2d97cb0 (diff)
downloadnumpy-e82af22dd1d7c01329b640f1fb6cdee6b1169898.tar.gz
DOC: Clearer docstring for repeat (#23348)
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r--numpy/core/fromnumeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py
index 7ea2313d1..99b9c8dab 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -438,7 +438,7 @@ def _repeat_dispatcher(a, repeats, axis=None):
@array_function_dispatch(_repeat_dispatcher)
def repeat(a, repeats, axis=None):
"""
- Repeat elements of an array.
+ Repeat each element of an array after themselves
Parameters
----------