Skip to content

Commit 7bbe796

Browse files
committed
Update docs
1 parent 425fb2a commit 7bbe796

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

pandas/core/arrays/base.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,8 @@ def _values_for_argsort(self):
250250
return np.array(self)
251251

252252
def argsort(self, ascending=True, kind='quicksort', *args, **kwargs):
253-
"""Returns the indices that would sort this array.
253+
"""
254+
Return the indices that would sort this array.
254255
255256
Parameters
256257
----------
@@ -259,7 +260,7 @@ def argsort(self, ascending=True, kind='quicksort', *args, **kwargs):
259260
or descending sort.
260261
kind : {'quicksort', 'mergesort', 'heapsort'}, optional
261262
Sorting algorithm.
262-
args, kwargs:
263+
*args, **kwargs:
263264
passed through to :func:`numpy.argsort`.
264265
265266
Returns
@@ -269,7 +270,7 @@ def argsort(self, ascending=True, kind='quicksort', *args, **kwargs):
269270
270271
See Also
271272
--------
272-
numpy.argsort
273+
numpy.argsort : Sorting implementation used internally.
273274
"""
274275
# Implementor note: You have two places to override the behavior of
275276
# argsort.

0 commit comments

Comments
 (0)