Skip to content

Commit

Permalink
Fixed Typos #59640 (#59651)
Browse files Browse the repository at this point in the history
* Fixed Typos

* Changes requested
  • Loading branch information
callumfrederiksen authored Aug 29, 2024
1 parent 27c7d51 commit e4956ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pandas/tests/io/parser/test_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def test_compressed_urls(
# test reading compressed urls with various engines and
# extension inference
if compression_only == "tar":
pytest.skip("TODO: Add tar salaraies.csv to pandas/io/parsers/data")
pytest.skip("TODO: Add tar salaries.csv to pandas/io/parsers/data")

extension = compression_to_extension[compression_only]
with open(datapath("io", "parser", "data", "salaries.csv" + extension), "rb") as f:
Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/plotting/test_hist_method.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def test_hist_layout_with_by(self, hist_df, by, layout, axes_num, res_layout):

# _check_plot_works adds an `ax` kwarg to the method call
# so we get a warning about an axis being cleared, even
# though we don't explicing pass one, see GH #13188
# though we don't explicitly pass one, see GH #13188
with tm.assert_produces_warning(UserWarning, check_stacklevel=False):
axes = _check_plot_works(df.height.hist, by=getattr(df, by), layout=layout)
_check_axes_shape(axes, axes_num=axes_num, layout=res_layout)
Expand Down
2 changes: 1 addition & 1 deletion web/pandas/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ <h5>With the support of:</h5>
<div class="col-6 col-md-2">
{% if company %}
<a href="{{ company.url }}" target="_blank">
<img class="img-fluid img-thumnail py-5 mx-auto" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
<img class="img-fluid img-thumbnail py-5 mx-auto" alt="{{ company.name }}" src="{{ base_url }}{{ company.logo }}"/>
</a>
{% endif %}
</div>
Expand Down

0 comments on commit e4956ab

Please sign in to comment.