diff --git a/pandas/core/base.py b/pandas/core/base.py index 2f25a9ce41369..5022beabef76b 100644 --- a/pandas/core/base.py +++ b/pandas/core/base.py @@ -758,7 +758,7 @@ def nbytes(self): @property def strides(self): """ return the strides of the underlying data """ - warnings.warn("{obj}.strudes is deprecated and will be removed " + warnings.warn("{obj}.strides is deprecated and will be removed " "in a future version".format(obj=type(self).__name__), FutureWarning, stacklevel=2) return self._ndarray_values.strides