From cd2b012ad877c64fa52e087cb3412fa13914a523 Mon Sep 17 00:00:00 2001 From: Alan Pryor Date: Mon, 14 Jan 2019 14:14:47 -0500 Subject: [PATCH] DOC: Correct minor spelling error --- pandas/_libs/tslibs/offsets.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/_libs/tslibs/offsets.pyx b/pandas/_libs/tslibs/offsets.pyx index 7097a702227d7..856aa52f82cf5 100644 --- a/pandas/_libs/tslibs/offsets.pyx +++ b/pandas/_libs/tslibs/offsets.pyx @@ -412,12 +412,12 @@ class _BaseOffset(object): **self.kwds) def __neg__(self): - # Note: we are defering directly to __mul__ instead of __rmul__, as + # Note: we are deferring directly to __mul__ instead of __rmul__, as # that allows us to use methods that can go in a `cdef class` return self * -1 def copy(self): - # Note: we are defering directly to __mul__ instead of __rmul__, as + # Note: we are deferring directly to __mul__ instead of __rmul__, as # that allows us to use methods that can go in a `cdef class` return self * 1