Skip to content

Commit 12a7ec7

Browse files
Fixed Typos
1 parent 27c7d51 commit 12a7ec7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pandas/tests/io/parser/test_network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def test_compressed_urls(
3939
# test reading compressed urls with various engines and
4040
# extension inference
4141
if compression_only == "tar":
42-
pytest.skip("TODO: Add tar salaraies.csv to pandas/io/parsers/data")
42+
pytest.skip("TODO: Add tar salaries.csv to pandas/io/parsers/data")
4343

4444
extension = compression_to_extension[compression_only]
4545
with open(datapath("io", "parser", "data", "salaries.csv" + extension), "rb") as f:

pandas/tests/io/test_stata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,7 +1588,7 @@ def test_unsupported_datetype(self, temp_file):
15881588
def test_repeated_column_labels(self, datapath):
15891589
# GH 13923, 25772
15901590
msg = """
1591-
Value labels for column ethnicsn are not unique. These cannot be converted to
1591+
Value labels for column ethics are not unique. These cannot be converted to
15921592
pandas categoricals.
15931593
15941594
Either read the file with `convert_categoricals` set to False or use the

pandas/tests/plotting/test_hist_method.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def test_hist_layout_with_by(self, hist_df, by, layout, axes_num, res_layout):
110110

111111
# _check_plot_works adds an `ax` kwarg to the method call
112112
# so we get a warning about an axis being cleared, even
113-
# though we don't explicing pass one, see GH #13188
113+
# though we don't explicitly pass one, see GH #13188
114114
with tm.assert_produces_warning(UserWarning, check_stacklevel=False):
115115
axes = _check_plot_works(df.height.hist, by=getattr(df, by), layout=layout)
116116
_check_axes_shape(axes, axes_num=axes_num, layout=res_layout)

web/pandas/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h5>With the support of:</h5>
4949
<div class="col-6 col-md-2">
5050
{% if company %}
5151
<a href="{{ company.url }}" target="_blank">
52-
<img class="img-fluid img-thumnail py-5 mx-auto" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
52+
<img class="img-fluid img-thumbnail py-5 mx-auto" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
5353
</a>
5454
{% endif %}
5555
</div>

0 commit comments

Comments
 (0)