Skip to content

Commit e4956ab

Browse files
Fixed Typos #59640 (#59651)
* Fixed Typos * Changes requested
1 parent 27c7d51 commit e4956ab

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pandas/tests/io/parser/test_network.py

+1-1
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/plotting/test_hist_method.py

+1-1
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

+1-1
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)