summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2020-10-20 18:39:50 +0300
committerGitHub <noreply@github.com>2020-10-20 18:39:50 +0300
commit32f1359fc2d11014b240dee2270acea1784a34bb (patch)
tree5a432ce7b7fef1d9bd4afdc6d4f27900d8c0b33a
parent76e80b35bcf279f7837b999cc8c7d6dd2d0a3402 (diff)
parent75927fcd2fe2613daa372638a8539dea4c1b29be (diff)
downloadnumpy-32f1359fc2d11014b240dee2270acea1784a34bb.tar.gz
Merge pull request #17594 from andryandrew/patch-1
DOC: Typo in lexsort docstring
-rw-r--r--numpy/core/multiarray.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/multiarray.py b/numpy/core/multiarray.py
index 6b335f1a6..d293700f2 100644
--- a/numpy/core/multiarray.py
+++ b/numpy/core/multiarray.py
@@ -406,7 +406,7 @@ def lexsort(keys, axis=None):
for the primary sort order, the second-to-last key for the secondary sort
order, and so on. The keys argument must be a sequence of objects that
can be converted to arrays of the same shape. If a 2D array is provided
- for the keys argument, it's rows are interpreted as the sorting keys and
+ for the keys argument, its rows are interpreted as the sorting keys and
sorting is according to the last row, second last row etc.
Parameters