From cd54b6dc2e23cb7142823206b15c90b8913e438c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Defferrard?= Date: Thu, 1 Feb 2024 14:40:12 +0100 Subject: [PATCH] fix typo --- pandas/core/window/rolling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/window/rolling.py b/pandas/core/window/rolling.py index 67885fcaec852..e4502c031b1fb 100644 --- a/pandas/core/window/rolling.py +++ b/pandas/core/window/rolling.py @@ -952,7 +952,7 @@ class Window(BaseWindow): If ``'left'``, the last point in the window is excluded from calculations. - If ``'both'``, the no points in the window are excluded from calculations. + If ``'both'``, no point in the window is excluded from calculations. If ``'neither'``, the first and last points in the window are excluded from calculations.