summaryrefslogtreecommitdiff
path: root/numpy/core/multiarray.py
diff options
context:
space:
mode:
authorandryandrew <andryandrew@gmail.com>2020-10-20 16:02:17 +0200
committerGitHub <noreply@github.com>2020-10-20 16:02:17 +0200
commit75927fcd2fe2613daa372638a8539dea4c1b29be (patch)
tree5a432ce7b7fef1d9bd4afdc6d4f27900d8c0b33a /numpy/core/multiarray.py
parent76e80b35bcf279f7837b999cc8c7d6dd2d0a3402 (diff)
downloadnumpy-75927fcd2fe2613daa372638a8539dea4c1b29be.tar.gz
DOC: Typo in lexsort docstring
...it's rows... --> ...its rows...
Diffstat (limited to 'numpy/core/multiarray.py')
-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