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

Skip to content

Commit eb6e810

Browse files
committed
DOC: Make grammatical corrections [ci doc]
1 parent c330648 commit eb6e810

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ on_finish:
9494
- codecov -e PYTHON_VERSION PLATFORM -n "%PYTHON_VERSION% Windows"
9595

9696
on_failure:
97-
# Generate a html for visual tests
97+
# Generate an html for visual tests
9898
- python tools/visualize_tests.py --no-browser
9999
- echo zipping images after a failure...
100100
- 7z a result_images.zip result_images\ | grep -v "Compressing"

galleries/users_explain/animations/animations.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# 4) Save or show the animation using one of the following methods:
6161
#
6262
# - `.pyplot.show` to show the animation in a window
63-
# - `.Animation.to_html5_video` to create a HTML ``<video>`` tag
63+
# - `.Animation.to_html5_video` to create an HTML ``<video>`` tag
6464
# - `.Animation.to_jshtml` to create HTML code with interactive JavaScript animation
6565
# controls
6666
# - `.Animation.save` to save the animation to a file

lib/matplotlib/artist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1870,7 +1870,7 @@ def kwdoc(artist):
18701870
-------
18711871
str
18721872
The settable properties of *artist*, as plain text if
1873-
:rc:`docstring.hardcopy` is False and as a rst table (intended for
1873+
:rc:`docstring.hardcopy` is False and as an rst table (intended for
18741874
use in Sphinx) if it is True.
18751875
"""
18761876
ai = ArtistInspector(artist)

lib/matplotlib/backends/_backend_tk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ def _recolor_icon(image, color):
817817
# Use the high-resolution (48x48 px) icon if it exists and is needed
818818
with Image.open(path_large if (size > 24 and path_large.exists())
819819
else path_regular) as im:
820-
# assure a RGBA image as foreground color is RGB
820+
# assure an RGBA image as foreground color is RGB
821821
im = im.convert("RGBA")
822822
image = ImageTk.PhotoImage(im.resize((size, size)), master=self)
823823
button._ntimage = image

lib/matplotlib/testing/compare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ def __del__(self):
224224

225225
class _SVGWithMatplotlibFontsConverter(_SVGConverter):
226226
"""
227-
A SVG converter which explicitly adds the fonts shipped by Matplotlib to
227+
An SVG converter which explicitly adds the fonts shipped by Matplotlib to
228228
Inkspace's font search path, to better support `svg.fonttype = "none"`
229229
(which is in particular used by certain mathtext tests).
230230
"""

tools/visualize_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
#
3-
# This builds a html page of all images from the image comparison tests
3+
# This builds an html page of all images from the image comparison tests
44
# and opens that page in the browser.
55
#
66
# $ python tools/visualize_tests.py

0 commit comments

Comments
 (0)