From b28455b2c88f852961e09ad41bb09a3de2dcc517 Mon Sep 17 00:00:00 2001 From: jschendel Date: Wed, 2 May 2018 11:31:08 -0600 Subject: [PATCH] CLN: Fix typo "strudes" --> "strides" --- pandas/core/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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