diff options
author | Greg Sadetsky <lepetitg@gmail.com> | 2022-08-17 14:28:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 14:28:03 -0400 |
commit | 3ac8bf5ca9e9652a0497229f7611c997acb5b1db (patch) | |
tree | 72c7da149dcfc5df03ccf579f44ae2f6d2a45af1 /numpy/core/fromnumeric.py | |
parent | b6a3e837785eac58a2f68e126f4db7895ca047b3 (diff) | |
download | numpy-3ac8bf5ca9e9652a0497229f7611c997acb5b1db.tar.gz |
DOC: Add missing word
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 36ddaa8f0..60087b8a1 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -788,7 +788,7 @@ def argpartition(a, kth, axis=-1, kind='introselect', order=None): kth : int or sequence of ints Element index to partition by. The k-th element will be in its final sorted position and all smaller elements will be moved - before it and all larger elements behind it. The order all + before it and all larger elements behind it. The order of all elements in the partitions is undefined. If provided with a sequence of k-th it will partition all of them into their sorted position at once. |