Skip to content

Commit 203de93

Browse files
authored
Merge pull request #29346 from timhoffm/typos
DOC: fix typos
2 parents dc63ec7 + fe9618d commit 203de93

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

doc/api/next_api_changes/removals/20866-JKS.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ ttconv removed
22
~~~~~~~~~~~~~~
33

44
The ``matplotlib._ttconv`` extension has been removed. Most of its
5-
functionaliy was already replaced by other code, and the only thing left
5+
functionality was already replaced by other code, and the only thing left
66
was embedding TTF fonts in PostScript in Type 42 format. This is now
77
done in the PS backend using the FontTools library.

doc/api/prev_api_changes/api_changes_3.1.0.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ The following miscellaneous API elements have been removed
533533
logger = logging.getLogger('matplotlib')
534534
logger.setLevel(logging.INFO)
535535
# configure log handling: Either include it into your ``logging`` hierarchy,
536-
# e.g. by configuring a root looger using ``logging.basicConfig()``,
536+
# e.g. by configuring a root logger using ``logging.basicConfig()``,
537537
# or add a standalone handler to the matplotlib logger:
538538
logger.addHandler(logging.StreamHandler())
539539

lib/matplotlib/axes/_base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,7 @@ def get_yaxis_text2_transform(self, pad_points):
10681068
Returns
10691069
-------
10701070
transform : Transform
1071-
The transform used for drawing secondart y-axis labels, which will
1071+
The transform used for drawing secondary y-axis labels, which will
10721072
add *pad_points* of padding (in points) between the axis and the
10731073
label. The x-direction is in axis coordinates and the y-direction
10741074
is in data coordinates

lib/matplotlib/sphinxext/plot_directive.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
3333
import matplotlib.pyplot as plt
3434
plt.plot([1, 2, 3], [4, 5, 6])
35-
plt.title("A plotting exammple")
35+
plt.title("A plotting example")
3636
3737
3. Using **doctest** syntax::
3838

lib/matplotlib/tests/test_colorbar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ def test_colorbar_errors(kwargs, error, message):
12081208
fig.colorbar(im, **kwargs)
12091209

12101210

1211-
def test_colorbar_axes_parmeters():
1211+
def test_colorbar_axes_parameters():
12121212
fig, ax = plt.subplots(2)
12131213
im = ax[0].imshow([[0, 1], [2, 3]])
12141214
# colorbar should accept any form of axes sequence:

lib/matplotlib/tests/test_widgets.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1599,7 +1599,7 @@ def test_polygon_selector_redraw(ax, draw_bounding_box):
15991599
for (etype, event_args) in event_sequence:
16001600
do_event(tool, etype, **event_args)
16011601
# After removing two verts, only one remains, and the
1602-
# selector should be automatically resete
1602+
# selector should be automatically reset
16031603
assert tool.verts == verts[0:2]
16041604

16051605

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ dev = [
5151
"setuptools_scm>=7",
5252
# Not required by us but setuptools_scm without a version, cso _if_
5353
# installed, then setuptools_scm 8 requires at least this version.
54-
# Unfortunately, we can't do a sort of minimum-if-instaled dependency, so
54+
# Unfortunately, we can't do a sort of minimum-if-installed dependency, so
5555
# we need to keep this for now until setuptools_scm _fully_ drops
5656
# setuptools.
5757
"setuptools>=64",

0 commit comments

Comments
 (0)