Skip to content

Commit 236209a

Browse files
authored
DOC: clarify three documentation strings in base.py (#57978)
DOC: clarify three return statements in base.py
1 parent 14e2b02 commit 236209a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pandas/core/base.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,7 @@ def nunique(self, dropna: bool = True) -> int:
10651065
@property
10661066
def is_unique(self) -> bool:
10671067
"""
1068-
Return boolean if values in the object are unique.
1068+
Return True if values in the object are unique.
10691069
10701070
Returns
10711071
-------
@@ -1086,7 +1086,7 @@ def is_unique(self) -> bool:
10861086
@property
10871087
def is_monotonic_increasing(self) -> bool:
10881088
"""
1089-
Return boolean if values in the object are monotonically increasing.
1089+
Return True if values in the object are monotonically increasing.
10901090
10911091
Returns
10921092
-------
@@ -1109,7 +1109,7 @@ def is_monotonic_increasing(self) -> bool:
11091109
@property
11101110
def is_monotonic_decreasing(self) -> bool:
11111111
"""
1112-
Return boolean if values in the object are monotonically decreasing.
1112+
Return True if values in the object are monotonically decreasing.
11131113
11141114
Returns
11151115
-------

0 commit comments

Comments
 (0)