Skip to content

Commit 8966221

Browse files
raghavgaijbrockmendel
authored andcommitted
DOC: Corrected spelling mistakes (#29828)
* Corrected spelling mistakes * Updated Thanks
1 parent c20048c commit 8966221

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pandas/core/missing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def _interpolate_scipy_wrapper(
339339
}
340340

341341
if getattr(x, "is_all_dates", False):
342-
# GH 5975, scipy.interp1d can't hande datetime64s
342+
# GH 5975, scipy.interp1d can't handle datetime64s
343343
x, new_x = x._values.astype("i8"), new_x.astype("i8")
344344

345345
if method == "pchip":

pandas/tests/plotting/test_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from pandas.plotting._matplotlib import converter
2323
except ImportError:
2424
# try / except, rather than skip, to avoid internal refactoring
25-
# causing an improprer skip
25+
# causing an improper skip
2626
pass
2727

2828
pytest.importorskip("matplotlib.pyplot")

pandas/tseries/converter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
import warnings
33

44
# TODO `_matplotlib` module should be private, so the plotting backend
5-
# can be change. Decide whether all these should be public and exponsed
5+
# can be changed. Decide whether all these should be public and exposed
66
# in `pandas.plotting`, or remove from here (I guess they are here for
7-
# legacy reasons
7+
# legacy reasons)
88
from pandas.plotting._matplotlib.converter import (
99
DatetimeConverter,
1010
MilliSecondLocator,

0 commit comments

Comments
 (0)