Skip to content

Commit 4663377

Browse files
authored
fix docs after deprecation of args (pandas-dev#42342)
Co-authored-by: JHM Darbyshire (iMac) <[email protected]>
1 parent 5675cd8 commit 4663377

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
@@ -5072,9 +5072,9 @@ def between(self, left, right, inclusive="both") -> Series:
50725072
4 False
50735073
dtype: bool
50745074
5075-
With `inclusive` set to ``False`` boundary values are excluded:
5075+
With `inclusive` set to ``"neither"`` boundary values are excluded:
50765076
5077-
>>> s.between(1, 4, inclusive=False)
5077+
>>> s.between(1, 4, inclusive="neither")
50785078
0 True
50795079
1 False
50805080
2 False

0 commit comments

Comments
 (0)