Skip to content

Commit 263cc6c

Browse files
Backport PR #42342: DOC: fix docs after deprecation of args (#42363)
Co-authored-by: attack68 <[email protected]>
1 parent 0e3a719 commit 263cc6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/series.py

+2-2
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)