Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a55909a

Browse files
authored
Merge pull request #13307 from anntzer/spell
DOC: Spelling fixes.
2 parents c2ff409 + a089e06 commit a55909a

70 files changed

Lines changed: 138 additions & 146 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

doc/api/api_changes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ Changes regarding the text.latex.unicode rcParam
359359
------------------------------------------------
360360

361361
The rcParam now defaults to True and is deprecated (i.e., in future versions
362-
of Maplotlib, unicode input will always be supported).
362+
of Matplotlib, unicode input will always be supported).
363363

364364
Moreover, the underlying implementation now uses ``\usepackage[utf8]{inputenc}``
365365
instead of ``\usepackage{ucs}\usepackage[utf8x]{inputenc}``.

doc/api/next_api_changes/2018-05-15-AL-removals.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changes regarding the text.latex.unicode rcParam
22
````````````````````````````````````````````````
33

44
The rcParam now defaults to True and is deprecated (i.e., in future versions
5-
of Maplotlib, unicode input will always be supported).
5+
of Matplotlib, unicode input will always be supported).
66

77
Moreover, the underlying implementation now uses ``\usepackage[utf8]{inputenc}``
88
instead of ``\usepackage{ucs}\usepackage[utf8x]{inputenc}``.

doc/faq/howto_faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ As of Matplotlib 2.2, `numpy.datetime64` objects are handled the same way
2323
as `datetime.datetime` objects.
2424

2525
If you prefer the pandas converters and locators, you can register their
26-
converter with the `matplolib.units` module::
26+
converter with the `matplotlib.units` module::
2727

2828
from pandas.tseries import converter as pdtc
2929
pdtc.register()

doc/users/generate_credits.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ def check_duplicates():
6565
email_counter = Counter(emails)
6666

6767
if email_counter.most_common(1)[0][1] > 1:
68-
print('DUPLICATE CHECK: The following email addesses are used with more '
69-
'than one name.\nConsider adding them to .mailmap.\n')
68+
print('DUPLICATE CHECK: The following email addresses are used with '
69+
'more than one name.\nConsider adding them to .mailmap.\n')
7070
for email, count in email_counter.items():
7171
if count > 1:
7272
print('%s\n%s' % (email, '\n'.join(l for l in lines if email in l)))

examples/axes_grid1/inset_locator_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
transform=ax.transAxes))
7474

7575
# We set the axis limits to something other than the default, in order to not
76-
# distract from the fact that axes coodinates are used here.
76+
# distract from the fact that axes coordinates are used here.
7777
ax.axis([0, 10, 0, 10])
7878

7979

examples/color/color_cycler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# For the most general use-case, you can provide a cycler to
3636
# `.set_prop_cycle`.
3737
# Here, we use the convenient shortcut that we can alternatively pass
38-
# one or more properties as keyword arguements. This creates and sets
38+
# one or more properties as keyword arguments. This creates and sets
3939
# a cycler iterating simultaneously over all properties.
4040
ax1.set_prop_cycle(color=['c', 'm', 'y', 'k'], lw=[1, 2, 3, 4])
4141
ax1.plot(yy)

examples/color/colorbar_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
neg = ax2.imshow(Zneg, cmap='Reds_r', interpolation='none')
3636
fig.colorbar(neg, ax=ax2)
3737

38-
# Plot both positive and negative values betwen +/- 1.2
38+
# Plot both positive and negative values between +/- 1.2
3939
pos_neg_clipped = ax3.imshow(Z, cmap='RdBu', vmin=-1.2, vmax=1.2,
4040
interpolation='none')
4141
# Add minorticks on the colorbar to make it easy to read the

examples/images_contours_and_fields/image_annotated_heatmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def annotate_heatmap(im, data=None, valfmt="{x:.2f}",
237237
# Some more complex heatmap examples
238238
# ----------------------------------
239239
#
240-
# In the following we show the versitality of the previously created
240+
# In the following we show the versatility of the previously created
241241
# functions by applying it in different cases and using different arguments.
242242
#
243243

examples/misc/demo_agg_filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def filtered_text(ax):
203203
fmt='%1.1f',
204204
fontsize=11)
205205

206-
# change clable color to black
206+
# change clabel color to black
207207
from matplotlib.patheffects import Normal
208208
for t in cl:
209209
t.set_color("k")

examples/specialty_plots/leftventricle_bulleye.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=====================
3-
Leftventricle Bulleye
4-
=====================
2+
=======================
3+
Left ventricle bullseye
4+
=======================
55
66
This example demonstrates how to create the 17 segment model for the left
77
ventricle recommended by the American Heart Association (AHA).

0 commit comments

Comments
 (0)