From 2a78173c598124b89da1f8304ec63e5304ff11f2 Mon Sep 17 00:00:00 2001 From: KimDoubleB Date: Fri, 11 Oct 2019 11:41:51 +0900 Subject: [PATCH] Fix typo --- pandas/core/indexes/multi.py | 2 +- pandas/core/indexes/timedeltas.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pandas/core/indexes/multi.py b/pandas/core/indexes/multi.py index 2da74012de968..b49bb856a2e2b 100644 --- a/pandas/core/indexes/multi.py +++ b/pandas/core/indexes/multi.py @@ -638,7 +638,7 @@ def levels(self): @property def _values(self): - # We override here, since our parent uses _data, which we dont' use. + # We override here, since our parent uses _data, which we don't use. return self.values @property diff --git a/pandas/core/indexes/timedeltas.py b/pandas/core/indexes/timedeltas.py index 2ecb66bc8f1e4..c6dce77c4d078 100644 --- a/pandas/core/indexes/timedeltas.py +++ b/pandas/core/indexes/timedeltas.py @@ -40,9 +40,9 @@ class TimedeltaDelegateMixin(DatetimelikeDelegateMixin): # Most attrs are dispatched via datetimelike_{ops,methods} - # Some are "raw" methods, the result is not not re-boxed in an Index + # Some are "raw" methods, the result is not re-boxed in an Index # We also have a few "extra" attrs, which may or may not be raw, - # which we we dont' want to expose in the .dt accessor. + # which we don't want to expose in the .dt accessor. _delegate_class = TimedeltaArray _delegated_properties = TimedeltaArray._datetimelike_ops + ["components"] _delegated_methods = TimedeltaArray._datetimelike_methods + [