Skip to content

Commit ff17ffc

Browse files
format
1 parent 30cf4c1 commit ff17ffc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pandas/core/groupby/groupby.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3716,10 +3716,10 @@ def rolling(
37163716
If ``'left'``, uses the window [first, last) meaning the first point
37173717
is included in the calculations.
37183718
3719-
If ``'both'``, uses the window [first, last] meaning all points in
3719+
If ``'both'``, uses the window [first, last] meaning all points in
37203720
the window are included in the calculations.
37213721
3722-
If ``'neither'``, uses the window (first, last) meaning the first
3722+
If ``'neither'``, uses the window (first, last) meaning the first
37233723
and last points in the window are excluded from calculations.
37243724
37253725
() and [] are referencing open and closed set

pandas/core/window/rolling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -937,10 +937,10 @@ class Window(BaseWindow):
937937
If ``'left'``, uses the window [first, last) meaning the first point
938938
is included in the calculations.
939939
940-
If ``'both'``, uses the window [first, last] meaning all points in
940+
If ``'both'``, uses the window [first, last] meaning all points in
941941
the window are included in the calculations.
942942
943-
If ``'neither'``, uses the window (first, last) meaning the first
943+
If ``'neither'``, uses the window (first, last) meaning the first
944944
and last points in the window are excluded from calculations.
945945
946946
() and [] are referencing open and closed set

0 commit comments

Comments
 (0)