Skip to content

DOC: fix typos #19567

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/sphinxext/missing_references.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def _truncate_location(location):
"""
Cuts off anything after the first colon in location strings.

This allows for easy comparison even when line numbers chagne
This allows for easy comparison even when line numbers change
(as they do regularly).
"""
return location.split(":", 1)[0]
Expand Down
2 changes: 1 addition & 1 deletion lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4908,7 +4908,7 @@ def reduce_C_function(C: array) -> float
# make sure we have no zeros
accum += 1

# autoscale the norm with curren accum values if it hasn't
# autoscale the norm with current accum values if it hasn't
# been set
if norm is not None:
if norm.vmin is None and norm.vmax is None:
Expand Down
2 changes: 1 addition & 1 deletion tutorials/intermediate/autoscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
# with requested margins.
#
# While sticky edges don't increase the axis limits through extra margins,
# negative margins are still taken into accout. This can be seen in
# negative margins are still taken into account. This can be seen in
# the reduced limits of the third image.
#
# Controlling autoscale
Expand Down