Skip to content

Commit ce4ab82

Browse files
jschendeljreback
authored andcommitted
CLN: Fix typo "strudes" --> "strides" (#20929)
1 parent 3340f27 commit ce4ab82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ def nbytes(self):
758758
@property
759759
def strides(self):
760760
""" return the strides of the underlying data """
761-
warnings.warn("{obj}.strudes is deprecated and will be removed "
761+
warnings.warn("{obj}.strides is deprecated and will be removed "
762762
"in a future version".format(obj=type(self).__name__),
763763
FutureWarning, stacklevel=2)
764764
return self._ndarray_values.strides

0 commit comments

Comments
 (0)