Skip to content

Commit 5d378d7

Browse files
authored
Fixed SA04 errors in docstrings (pandas-dev pandas-dev#28792)
1 parent 4ecc9ba commit 5d378d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/indexes/range.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ def memory_usage(self, deep=False):
335335
336336
See Also
337337
--------
338-
numpy.ndarray.nbytes
338+
numpy.ndarray.nbytes : Total bytes consumed by the elements of the array.
339339
"""
340340
return self.nbytes
341341

@@ -458,7 +458,7 @@ def argsort(self, *args, **kwargs):
458458
459459
See Also
460460
--------
461-
numpy.ndarray.argsort
461+
numpy.ndarray.argsort : Returns the indices that would sort this array.
462462
"""
463463
nv.validate_argsort(args, kwargs)
464464

0 commit comments

Comments
 (0)