Skip to content

Commit

Permalink
CLN: Fix typo "strudes" --> "strides" (#20929)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschendel authored and jreback committed May 3, 2018
1 parent 3340f27 commit ce4ab82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ce4ab82

Please sign in to comment.