summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2015-10-23 08:50:07 -0600
committerCharles Harris <charlesr.harris@gmail.com>2015-10-23 08:50:07 -0600
commit5c286bcd6550a28be4b5bc9a6cf830fe0c69e7d3 (patch)
treea7cbff54e481c5a73f29c5bcaff34e25c233c70c /numpy/core/fromnumeric.py
parentbf28b4432183126c21f0fa80852c335e9c1ed7c1 (diff)
parentf994f2a7569b35810e35c96897680f9b38f291f7 (diff)
downloadnumpy-5c286bcd6550a28be4b5bc9a6cf830fe0c69e7d3.tar.gz
Merge pull request #6548 from lzkelley/dev
DOC: clarify usage of 'argparse' return value (see #4724).
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 7ba364512..0fc572cb6 100644
--- a/numpy/core/fromnumeric.py
+++ b/numpy/core/fromnumeric.py
@@ -848,7 +848,7 @@ def argsort(a, axis=-1, kind='quicksort', order=None):
-------
index_array : ndarray, int
Array of indices that sort `a` along the specified axis.
- In other words, ``a[index_array]`` yields a sorted `a`.
+ If `a` is one-dimensional, ``a[index_array]`` yields a sorted `a`.
See Also
--------