Skip to content

Commit e13258a

Browse files
attack68meeseeksmachine
authored andcommitted
Backport PR pandas-dev#42342: DOC: fix docs after deprecation of args
1 parent 0e3a719 commit e13258a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/series.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5074,9 +5074,9 @@ def between(self, left, right, inclusive="both") -> Series:
50745074
4 False
50755075
dtype: bool
50765076
5077-
With `inclusive` set to ``False`` boundary values are excluded:
5077+
With `inclusive` set to ``"neither"`` boundary values are excluded:
50785078
5079-
>>> s.between(1, 4, inclusive=False)
5079+
>>> s.between(1, 4, inclusive="neither")
50805080
0 True
50815081
1 False
50825082
2 False

0 commit comments

Comments
 (0)