Skip to content

Commit 6480090

Browse files
authored
CI: Fix spelling errors (#52627)
1 parent 9b20759 commit 6480090

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/source/whatsnew/v0.14.0.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -506,7 +506,7 @@ See also issues (:issue:`6134`, :issue:`4036`, :issue:`3057`, :issue:`2598`, :is
506506

507507
You should specify all axes in the ``.loc`` specifier, meaning the indexer for the **index** and
508508
for the **columns**. Their are some ambiguous cases where the passed indexer could be mis-interpreted
509-
as indexing *both* axes, rather than into say the MuliIndex for the rows.
509+
as indexing *both* axes, rather than into say the MultiIndex for the rows.
510510

511511
You should do this:
512512

pandas/tests/frame/methods/test_sort_index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ def test_respect_ignore_index(self, inplace, ignore_index):
473473
def test_sort_index_ignore_index_multi_index(
474474
self, inplace, original_dict, sorted_dict, ascending, ignore_index, output_index
475475
):
476-
# GH 30114, this is to test ignore_index on MulitIndex of index
476+
# GH 30114, this is to test ignore_index on MultiIndex of index
477477
mi = MultiIndex.from_tuples([(2, 1), (3, 4)], names=list("AB"))
478478
df = DataFrame(original_dict, index=mi)
479479
expected_df = DataFrame(sorted_dict, index=output_index)

pandas/tests/io/formats/style/test_style.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1152,7 +1152,7 @@ def test_hide_columns_single_level(self, df):
11521152
assert not ctx["body"][0][1]["is_visible"] # col A, row 1
11531153
assert ctx["body"][1][2]["is_visible"] # col B, row 1
11541154

1155-
# test hiding mulitiple columns
1155+
# test hiding multiple columns
11561156
ctx = df.style.hide(["A", "B"], axis="columns")._translate(True, True)
11571157
assert not ctx["head"][0][1]["is_visible"]
11581158
assert not ctx["head"][0][2]["is_visible"]

0 commit comments

Comments
 (0)