Skip to content

Commit bc23a8e

Browse files
authored
Updated docstrings for missing description
pandas-dev Issue pandas-dev#28792
1 parent df1c295 commit bc23a8e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/arrays/integer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ def value_counts(self, dropna=True):
551551
552552
See Also
553553
--------
554-
Series.value_counts
554+
Series.value_counts: Return a Series containing counts of unique values.
555555
556556
"""
557557

@@ -592,7 +592,7 @@ def _values_for_argsort(self) -> np.ndarray:
592592
593593
See Also
594594
--------
595-
ExtensionArray.argsort
595+
ExtensionArray.argsort: Return the indices that would sort this array.
596596
"""
597597
data = self._data.copy()
598598
data[self._mask] = data.min() - 1

0 commit comments

Comments
 (0)