Skip to content

Commit fed55c6

Browse files
luzpaztacaswell
andauthored
DOC: fix typos (#18980)
* DOC: fix typos Found using `codespell v2.0.dev` ``` codespell -q 3 -S ./extern,./doc/users/credits.rst,./doc/api/prev_api_changes,./doc/users/prev_whats_new -L afe,ans,axises,ba,coo,flate,fo,hist,inout,ment,nd,offsetp,oly,ot,te,thisy,vas,whis,wit ``` * Added requested revisions Co-authored-by: Thomas A Caswell <tcaswell@gmail.com> * Added requested revisions Co-authored-by: Thomas A Caswell <tcaswell@gmail.com> * Added requested revisions Co-authored-by: Thomas A Caswell <tcaswell@gmail.com> * Fix typo demonstrated by @QuLogic Co-authored-by: Thomas A Caswell <tcaswell@gmail.com>
1 parent 87119ea commit fed55c6

35 files changed

+46
-46
lines changed

LICENSE/LICENSE_BAKOMA

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
BaKoMa Fonts Licence
33
--------------------
44

5-
This licence covers two font packs (known as BaKoMa Fonts Colelction,
5+
This licence covers two font packs (known as BaKoMa Fonts Collection,
66
which is available at `CTAN:fonts/cm/ps-type1/bakoma/'):
77

88
1) BaKoMa-CM (1.1/12-Nov-94)

doc/_static/fa/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Font Awsome SVG Icons are covered by CC BY 4.0 License.
1+
Font Awesome SVG Icons are covered by CC BY 4.0 License.
22

33
https://fontawesome.com/license/free
44

doc/thirdpartypackages/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ mpl_interactions
243243
================
244244
`mpl_interactions <https://mpl-interactions.readthedocs.io/en/latest/>`_
245245
makes it easy to create interactive plots controlled by sliders and other
246-
widgets. It also provides several handy capabilties such as manual
246+
widgets. It also provides several handy capabilities such as manual
247247
image segmentation, comparing cross-sections of arrays, and using the
248248
scroll wheel to zoom.
249249

examples/animation/animated_histogram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
###############################################################################
2525
# To animate the histogram, we need an ``animate`` function, which generates
26-
# a random set of numbers and updates the heights of rectanges. We utilize a
26+
# a random set of numbers and updates the heights of rectangles. We utilize a
2727
# python closure to track an instance of `.BarContainer` whose `.Rectangle`
2828
# patches we shall update.
2929

examples/axisartist/demo_curvelinear_grid2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
======================
3-
Demo Curvelinear Grid2
3+
Demo CurveLinear Grid2
44
======================
55
66
Custom grid and ticklines.

examples/images_contours_and_fields/contour_label_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
Z = (Z1 - Z2) * 2
2828

2929
###############################################################################
30-
# Make contour labels wuth custom level formatters
30+
# Make contour labels with custom level formatters
3131

3232

3333
# This custom formatter removes trailing zeros, e.g. "1.0" becomes "1", and

examples/misc/packed_bubbles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def collapse(self, n_iterations=50):
115115
# calculate direction vector
116116
dir_vec = rest_bub[colliding, :2] - self.bubbles[i, :2]
117117
dir_vec = dir_vec / np.sqrt(dir_vec.dot(dir_vec))
118-
# calculate orthagonal vector
118+
# calculate orthogonal vector
119119
orth = np.array([dir_vec[1], -dir_vec[0]])
120120
# test which direction to go
121121
new_point1 = (self.bubbles[i, :2] + orth *

examples/shapes_and_collections/hatch_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
==========
55
66
Hatches can be added to most polygons in Matplotlib, including `~.Axes.bar`,
7-
`~.Axes.fill_between`, `~.Axes.contourf`, and childern of `~.patches.Polygon`.
7+
`~.Axes.fill_between`, `~.Axes.contourf`, and children of `~.patches.Polygon`.
88
They are currently supported in the PS, PDF, SVG, OSX, and Agg backends. The WX
99
and Cairo backends do not currently support hatching.
1010

examples/shapes_and_collections/hatch_style_reference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
=====================
55
66
Hatches can be added to most polygons in Matplotlib, including `~.Axes.bar`,
7-
`~.Axes.fill_between`, `~.Axes.contourf`, and childern of `~.patches.Polygon`.
7+
`~.Axes.fill_between`, `~.Axes.contourf`, and children of `~.patches.Polygon`.
88
They are currently supported in the PS, PDF, SVG, OSX, and Agg backends. The WX
99
and Cairo backends do not currently support hatching.
1010

examples/statistics/time_series_histogram.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
Y = np.cumsum(np.random.randn(num_series, num_points), axis=-1)
4343
# Generate sinusoidal signals
4444
num_signal = int(round(SNR * num_series))
45-
phi = (np.pi / 8) * np.random.randn(num_signal, 1) # small random offest
45+
phi = (np.pi / 8) * np.random.randn(num_signal, 1) # small random offset
4646
Y[-num_signal:] = (
4747
np.sqrt(np.arange(num_points))[None, :] # random walk RMS scaling factor
4848
* (np.sin(x[None, :] - phi)

examples/subplots_axes_and_figures/subfigures.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:doc:`nested gridspecs</gallery/subplots_axes_and_figures/gridspec_nested>`,
99
but having a virtual figure with its own artists is helpful, so
1010
Matplotlib also has "subfigures", accessed by calling
11-
`matplotlib.figure.Figure.add_subfigure` in a way that is analagous to
11+
`matplotlib.figure.Figure.add_subfigure` in a way that is analogous to
1212
`matplotlib.figure.Figure.add_subplot`, or
1313
`matplotlib.figure.Figure.subfigures` to make an array of subfigures. Note
1414
that subfigures can also have their own child subfigures.
@@ -73,7 +73,7 @@ def example_plot(ax, fontsize=12, hide_labels=False):
7373
for a in axs[:, 1:].flat:
7474
a.plot(np.arange(10))
7575

76-
# make the subfigure in the empy gridspec slots:
76+
# make the subfigure in the empty gridspec slots:
7777
subfig = fig.add_subfigure(gridspec[:, 0])
7878

7979
axsLeft = subfig.subplots(1, 2, sharey=True)

examples/text_labels_and_annotations/titles_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
ax.set_xlabel('X-label')
5050
ax.set_title('Manual y', y=1.0, pad=-14)
5151

52-
plt.rcParams['axes.titley'] = 1.0 # y is in axes-relative co-ordinates.
52+
plt.rcParams['axes.titley'] = 1.0 # y is in axes-relative coordinates.
5353
plt.rcParams['axes.titlepad'] = -14 # pad is in points...
5454
ax = axs[1]
5555
ax.plot(range(10))

examples/ticks_and_spines/date_concise_formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
plt.show()
4545

4646
#############################################################################
47-
# The default date formater is quite verbose, so we have the option of
47+
# The default date formatter is quite verbose, so we have the option of
4848
# using `~.dates.ConciseDateFormatter`, as shown below. Note that
4949
# for this example the labels do not need to be rotated as they do for the
5050
# default formatter because the labels are as small as possible.

lib/matplotlib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ def rc_params_from_file(fname, fail_on_error=False, use_default_template=True):
882882
with cbook._suppress_matplotlib_deprecation_warning():
883883
rcParamsOrig = RcParams(rcParams.copy())
884884
# This also checks that all rcParams are indeed listed in the template.
885-
# Assiging to rcsetup.defaultParams is left only for backcompat.
885+
# Assigning to rcsetup.defaultParams is left only for backcompat.
886886
defaultParams = rcsetup.defaultParams = {
887887
# We want to resolve deprecated rcParams, but not backend...
888888
key: [(rcsetup._auto_backend_sentinel if key == "backend" else

lib/matplotlib/_animation_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
if (isInternetExplorer()) {
3131
// switch from oninput to onchange because IE <= 11 does not conform
3232
// with W3C specification. It ignores oninput and onchange behaves
33-
// like oninput. In contrast, Mircosoft Edge behaves correctly.
33+
// like oninput. In contrast, Microsoft Edge behaves correctly.
3434
slider.setAttribute('onchange', slider.getAttribute('oninput'));
3535
slider.setAttribute('oninput', null);
3636
}

lib/matplotlib/_constrained_layout.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Subplotspecs that are derived from this gridspec can contain either a
3333
``SubPanel``, a ``GridSpecFromSubplotSpec``, or an axes. The ``SubPanel`` and
3434
``GridSpecFromSubplotSpec`` are dealt with recursively and each contain an
35-
analagous layout.
35+
analogous layout.
3636
3737
Each ``GridSpec`` has a ``_layoutgrid`` attached to it. The ``_layoutgrid``
3838
has the same logical layout as the ``GridSpec``. Each row of the grid spec
@@ -460,8 +460,8 @@ def _reposition_axes(fig, renderer, *, w_pad=0, h_pad=0, hspace=0, wspace=0):
460460
if not hasattr(ax, 'get_subplotspec') or not ax.get_in_layout():
461461
continue
462462

463-
# grid bbox is in Figure co-ordinates, but we specify in panel
464-
# co-ordinates...
463+
# grid bbox is in Figure coordinates, but we specify in panel
464+
# coordinates...
465465
ss = ax.get_subplotspec()
466466
gs = ss.get_gridspec()
467467
nrows, ncols = gs.get_geometry()

lib/matplotlib/_layoutgrid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
A layoutgrid is a nrows by ncols set of boxes, meant to be used by
3-
`._constrained_layout`, each box is analagous to a subplotspec element of
3+
`._constrained_layout`, each box is analogous to a subplotspec element of
44
a gridspec.
55
66
Each box is defined by left[ncols], right[ncols], bottom[nrows] and top[nrows],
@@ -28,7 +28,7 @@
2828

2929
class LayoutGrid:
3030
"""
31-
Analagous to a gridspec, and contained in another LayoutGrid.
31+
Analogous to a gridspec, and contained in another LayoutGrid.
3232
"""
3333

3434
def __init__(self, parent=None, parent_pos=(0, 0),

lib/matplotlib/axes/_base.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ def get_xaxis_text1_transform(self, pad_points):
778778
The transform used for drawing x-axis labels, which will add
779779
*pad_points* of padding (in points) between the axes and the label.
780780
The x-direction is in data coordinates and the y-direction is in
781-
axis corrdinates
781+
axis coordinates
782782
valign : {'center', 'top', 'bottom', 'baseline', 'center_baseline'}
783783
The text vertical alignment.
784784
halign : {'center', 'left', 'right'}
@@ -804,7 +804,7 @@ def get_xaxis_text2_transform(self, pad_points):
804804
The transform used for drawing secondary x-axis labels, which will
805805
add *pad_points* of padding (in points) between the axes and the
806806
label. The x-direction is in data coordinates and the y-direction
807-
is in axis corrdinates
807+
is in axis coordinates
808808
valign : {'center', 'top', 'bottom', 'baseline', 'center_baseline'}
809809
The text vertical alignment.
810810
halign : {'center', 'left', 'right'}
@@ -854,7 +854,7 @@ def get_yaxis_text1_transform(self, pad_points):
854854
The transform used for drawing y-axis labels, which will add
855855
*pad_points* of padding (in points) between the axes and the label.
856856
The x-direction is in axis coordinates and the y-direction is in
857-
data corrdinates
857+
data coordinates
858858
valign : {'center', 'top', 'bottom', 'baseline', 'center_baseline'}
859859
The text vertical alignment.
860860
halign : {'center', 'left', 'right'}
@@ -880,7 +880,7 @@ def get_yaxis_text2_transform(self, pad_points):
880880
The transform used for drawing secondart y-axis labels, which will
881881
add *pad_points* of padding (in points) between the axes and the
882882
label. The x-direction is in axis coordinates and the y-direction
883-
is in data corrdinates
883+
is in data coordinates
884884
valign : {'center', 'top', 'bottom', 'baseline', 'center_baseline'}
885885
The text vertical alignment.
886886
halign : {'center', 'left', 'right'}

lib/matplotlib/backend_bases.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def draw_path_collection(self, gc, master_transform, paths, all_transforms,
259259
antialiaseds, urls, offset_position):
260260
path, transform = path_id
261261
# Only apply another translation if we have an offset, else we
262-
# resuse the inital transform.
262+
# reuse the initial transform.
263263
if xo != 0 or yo != 0:
264264
# The transformation can be used by multiple paths. Since
265265
# translate is a inplace operation, we need to copy the
@@ -2602,7 +2602,7 @@ def _get_uniform_gridstate(ticks):
26022602
_log.warning(str(exc))
26032603
ax.set_xscale('linear')
26042604
ax.figure.canvas.draw_idle()
2605-
# enable nagivation for all axes that contain the event (default key 'a')
2605+
# enable navigation for all axes that contain the event (default key 'a')
26062606
elif event.key in all_keys:
26072607
for a in canvas.figure.get_axes():
26082608
if (event.x is not None and event.y is not None

lib/matplotlib/cm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def register_cmap(name=None, cmap=None, *, override_builtin=False):
131131
Notes
132132
-----
133133
Registering a colormap stores a reference to the colormap object
134-
which can currently be modified and inadvertantly change the global
134+
which can currently be modified and inadvertently change the global
135135
colormap state. This behavior is deprecated and in Matplotlib 3.5
136136
the registered colormap will be immutable.
137137

lib/matplotlib/collections.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def __init__(self,
119119
See :doc:`/gallery/lines_bars_and_markers/joinstyle` for
120120
a demonstration of each of the allowed values.
121121
antialiaseds : bool or list of bool, default: :rc:`patch.antialiased`
122-
Whether each pach in the collection should be drawn with
122+
Whether each patch in the collection should be drawn with
123123
antialiasing.
124124
offsets : (float, float) or list thereof, default: (0, 0)
125125
A vector by which to translate each patch after rendering (default
@@ -1491,7 +1491,7 @@ def get_color(self):
14911491

14921492
class EventCollection(LineCollection):
14931493
"""
1494-
A collection of locations along a single axis at which an "event" occured.
1494+
A collection of locations along a single axis at which an "event" occurred.
14951495
14961496
The events are given by a 1-dimensional array. They do not have an
14971497
amplitude and are displayed as parallel lines.

lib/matplotlib/colorbar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
*orientation* if it is set (vertical colorbars on the right, horizontal
5555
ones at the bottom), or default to 'right' if *orientation* is unset.
5656
orientation : None or {'vertical', 'horizontal'}
57-
The orientation of the colorbar. It is preferrable to set the *location*
57+
The orientation of the colorbar. It is preferable to set the *location*
5858
of the colorbar, as that also determines the *orientation*; passing
5959
incompatible values for *location* and *orientation* raises an exception.
6060
fraction : float, default: 0.15

lib/matplotlib/colors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
Mapping data onto colors using a colormap typically involves two steps: a data
1111
array is first mapped onto the range 0-1 using a subclass of `Normalize`,
1212
then this number is mapped to a color using a subclass of `Colormap`. Two
13-
sublasses of `Colormap` provided here: `LinearSegmentedColormap`, which uses
13+
subclasses of `Colormap` provided here: `LinearSegmentedColormap`, which uses
1414
piecewise-linear interpolation to define colormaps, and `ListedColormap`, which
1515
makes a colormap from a list of colors.
1616

lib/matplotlib/dates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def set_epoch(epoch):
247247
If microsecond accuracy is desired, the date being plotted needs to be
248248
within approximately 70 years of the epoch. Matplotlib internally
249249
represents dates as days since the epoch, so floating point dynamic
250-
range needs to be within a factor fo 2^52.
250+
range needs to be within a factor of 2^52.
251251
252252
`~.dates.set_epoch` must be called before any dates are converted
253253
(i.e. near the import section) or a RuntimeError will be raised.

lib/matplotlib/gridspec.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def _check_gridspec_exists(figure, nrows, ncols):
214214
gs = ax.get_subplotspec().get_gridspec()
215215
if hasattr(gs, 'get_topmost_subplotspec'):
216216
# This is needed for colorbar gridspec layouts.
217-
# This is probably OK becase this whole logic tree
217+
# This is probably OK because this whole logic tree
218218
# is for when the user is doing simple things with the
219219
# add_subplot command. For complicated layouts
220220
# like subgridspecs the proper gridspec is passed in...
@@ -759,7 +759,7 @@ def rowspan(self):
759759
def colspan(self):
760760
"""The columns spanned by this subplot, as a `range` object."""
761761
ncols = self.get_gridspec().ncols
762-
# We explicitly support num2 refering to a column on num1's *left*, so
762+
# We explicitly support num2 referring to a column on num1's *left*, so
763763
# we must sort the column indices here so that the range makes sense.
764764
c1, c2 = sorted([self.num1 % ncols, self.num2 % ncols])
765765
return range(c1, c2 + 1)

lib/matplotlib/offsetbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ def get_extent(self, renderer):
998998
ub = mtransforms.Bbox.union(bboxes)
999999
# adjust ref_offset_transform
10001000
self.ref_offset_transform.translate(-ub.x0, -ub.y0)
1001-
# restor offset transform
1001+
# restore offset transform
10021002
self.offset_transform.set_matrix(_off)
10031003

10041004
return ub.width, ub.height, 0., 0.

lib/matplotlib/patches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ def set_xy(self, xy):
11241124
xy = np.concatenate([xy, [xy[0]]])
11251125
else:
11261126
# if we aren't closed, and the last vertex matches the first, then
1127-
# we assume we have an unecessary CLOSEPOLY vertex and remove it
1127+
# we assume we have an unnecessary CLOSEPOLY vertex and remove it
11281128
if nverts > 2 and (xy[0] == xy[-1]).all():
11291129
xy = xy[:-1]
11301130
self._path = Path(xy, closed=self._closed)

lib/matplotlib/tests/test_cbook.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ def __getitem__(self, item):
559559

560560

561561
def test_reshape2d_pandas(pd):
562-
# seperate to allow the rest of the tests to run if no pandas...
562+
# separate to allow the rest of the tests to run if no pandas...
563563
X = np.arange(30).reshape(10, 3)
564564
x = pd.DataFrame(X, columns=["a", "b", "c"])
565565
Xnew = cbook._reshape_2D(x, 'x')

lib/matplotlib/tests/test_legend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def test_legend_kwargs_handles_labels(self):
286286
lns, = ax.plot(th, np.sin(th), label='sin')
287287
lnc, = ax.plot(th, np.cos(th), label='cos')
288288
with mock.patch('matplotlib.legend.Legend') as Legend:
289-
# labels of lns, lnc are overwritten with explict ('a', 'b')
289+
# labels of lns, lnc are overwritten with explicit ('a', 'b')
290290
ax.legend(labels=('a', 'b'), handles=(lnc, lns))
291291
Legend.assert_called_with(ax, (lnc, lns), ('a', 'b'))
292292

lib/matplotlib/tests/test_pyplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def test_nested_ion_ioff():
144144
assert mpl.is_interactive()
145145
assert not mpl.is_interactive()
146146

147-
# redunant contexts
147+
# redundant contexts
148148
with plt.ion():
149149
with plt.ion():
150150
assert mpl.is_interactive()

lib/matplotlib/tests/test_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def test_table_cells():
190190
table[2, 1] = cell2
191191
assert table[2, 1] is cell2
192192

193-
# make sure gettitem support has not broken
193+
# make sure getitem support has not broken
194194
# properties and setp
195195
table.properties()
196196
plt.setp(table)

matplotlibrc.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@
405405
#axes.prop_cycle: cycler('color', ['1f77b4', 'ff7f0e', '2ca02c', 'd62728', '9467bd', '8c564b', 'e377c2', '7f7f7f', 'bcbd22', '17becf'])
406406
# color cycle for plot lines as list of string color specs:
407407
# single letter, long name, or web-style hex
408-
# As opposed to all other paramters in this file, the color
408+
# As opposed to all other parameters in this file, the color
409409
# values must be enclosed in quotes for this parameter,
410410
# e.g. '1f77b4', instead of 1f77b4.
411411
# See also https://matplotlib.org/tutorials/intermediate/color_cycle.html

tutorials/intermediate/constrainedlayout_guide.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ def docomplicated(suptitle=None):
564564
# for each column, and ``bottom`` and ``top`` variables for each row, and
565565
# further it has a margin for each of left, right, bottom and top. In each
566566
# row, the bottom/top margins are widened until all the decorators
567-
# in that row are accomodated. Similarly for columns and the left/right
567+
# in that row are accommodated. Similarly for columns and the left/right
568568
# margins.
569569
#
570570
#

tutorials/toolkits/axisartist.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
:align: center
122122
:scale: 50
123123
124-
Demo Curvelinear Grid
124+
Demo CurveLinear Grid
125125
126126
Floating Axes
127127
-------------
@@ -566,7 +566,7 @@ def inv_tr(x, y):
566566
:align: center
567567
:scale: 50
568568
569-
Demo Curvelinear Grid
569+
Demo CurveLinear Grid
570570
571571
FloatingAxis
572572
============

0 commit comments

Comments
 (0)