diff --git a/doc/source/user_guide/computation.rst b/doc/source/user_guide/computation.rst index 10e27606a1415..e7edda90610b5 100644 --- a/doc/source/user_guide/computation.rst +++ b/doc/source/user_guide/computation.rst @@ -433,7 +433,7 @@ The following methods are available: The weights used in the window are specified by the ``win_type`` keyword. The list of recognized types are the `scipy.signal window functions -`__: +`__: * ``boxcar`` * ``triang`` diff --git a/pandas/core/window/rolling.py b/pandas/core/window/rolling.py index 06c3ad23f904f..335fc3db5cd86 100644 --- a/pandas/core/window/rolling.py +++ b/pandas/core/window/rolling.py @@ -940,7 +940,7 @@ class Window(_Window): If ``win_type=None`` all points are evenly weighted. To learn more about different window types see `scipy.signal window functions - `__. + `__. Certain window types require additional parameters to be passed. Please see the third example below on how to add the additional parameters.