Skip to content

Commit 49ec516

Browse files
authored
rolling window doc update (#11094)
1 parent c085199 commit 49ec516

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

xarray/computation/rolling.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ def __init__(
279279
Object to window.
280280
windows : mapping of hashable to int
281281
A mapping from the name of the dimension to create the rolling
282-
exponential window along (e.g. `time`) to the size of the moving window.
282+
window along (e.g. `time`) to the size of the moving window.
283283
min_periods : int, default: None
284284
Minimum number of observations in window required to have a value
285285
(otherwise result is NA). The default, None, is equivalent to
@@ -791,7 +791,7 @@ def __init__(
791791
Object to window.
792792
windows : mapping of hashable to int
793793
A mapping from the name of the dimension to create the rolling
794-
exponential window along (e.g. `time`) to the size of the moving window.
794+
window along (e.g. `time`) to the size of the moving window.
795795
min_periods : int, default: None
796796
Minimum number of observations in window required to have a value
797797
(otherwise result is NA). The default, None, is equivalent to
@@ -1061,7 +1061,7 @@ def __init__(
10611061
Object to window.
10621062
windows : mapping of hashable to int
10631063
A mapping from the name of the dimension to create the rolling
1064-
exponential window along (e.g. `time`) to the size of the moving window.
1064+
window along (e.g. `time`) to the size of the moving window.
10651065
boundary : {"exact", "trim", "pad"}
10661066
If 'exact', a ValueError will be raised if dimension size is not a
10671067
multiple of window size. If 'trim', the excess indexes are trimmed.

0 commit comments

Comments
 (0)