summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Haldane <ealloc@gmail.com>2018-01-18 04:50:30 +0100
committerGitHub <noreply@github.com>2018-01-18 04:50:30 +0100
commit142184914b3de87dc7f49b8787d4f39ce67f7d1e (patch)
treea0713de58e65f5905bb40fc0803ee5c8d0c68c5c
parent668511a7e4e64e882cf6cd5ed366448b6c7ca8c3 (diff)
parent858a6230f07ef7bf3a10becc36663976adeda8e8 (diff)
downloadnumpy-142184914b3de87dc7f49b8787d4f39ce67f7d1e.tar.gz
Merge pull request #10427 from milo0/master
DOC: Fix typo in docs for argpartition
-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 8203684e9..43584349f 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -596,7 +596,7 @@ def partition(a, kth, axis=-1, kind='introselect', order=None):
Element index to partition by. The k-th value of the element
will be in its final sorted position and all smaller elements
will be moved before it and all equal or greater elements behind
- it. The order all elements in the partitions is undefined. If
+ it. The order of all elements in the partitions is undefined. If
provided with a sequence of k-th it will partition all elements
indexed by k-th of them into their sorted position at once.
axis : int or None, optional