Skip to content

Commit d8f9be7

Browse files
KimDoubleBWillAyd
authored andcommitted
Fix typo (#28915)
1 parent de2e086 commit d8f9be7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pandas/core/indexes/multi.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ def levels(self):
638638

639639
@property
640640
def _values(self):
641-
# We override here, since our parent uses _data, which we dont' use.
641+
# We override here, since our parent uses _data, which we don't use.
642642
return self.values
643643

644644
@property

pandas/core/indexes/timedeltas.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040

4141
class TimedeltaDelegateMixin(DatetimelikeDelegateMixin):
4242
# Most attrs are dispatched via datetimelike_{ops,methods}
43-
# Some are "raw" methods, the result is not not re-boxed in an Index
43+
# Some are "raw" methods, the result is not re-boxed in an Index
4444
# We also have a few "extra" attrs, which may or may not be raw,
45-
# which we we dont' want to expose in the .dt accessor.
45+
# which we don't want to expose in the .dt accessor.
4646
_delegate_class = TimedeltaArray
4747
_delegated_properties = TimedeltaArray._datetimelike_ops + ["components"]
4848
_delegated_methods = TimedeltaArray._datetimelike_methods + [

0 commit comments

Comments
 (0)