Skip to content

Commit 1774e56

Browse files
authored
Merge pull request #8709 from taehoonlee/fix_typos
Fix typos
2 parents 39a9ad5 + 5d88cca commit 1774e56

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

doc/users/github_stats.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ Pull Requests (1003):
677677
* :ghpull:`7548`: Clarify to_rgba docstring.
678678
* :ghpull:`7476`: Sticky margins
679679
* :ghpull:`7552`: Correctly extend a lognormed colorbar
680-
* :ghpull:`7499`: Improve the the marker table in markers_api documentation
680+
* :ghpull:`7499`: Improve the marker table in markers_api documentation
681681
* :ghpull:`7468`: TST: Enable pytest-xdist
682682
* :ghpull:`7530`: MAINT: TkAgg default backend depends on tkinter
683683
* :ghpull:`7531`: double tolerance for test_png.py/pngsuite on Windows

doc/users/prev_whats_new/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1488,7 +1488,7 @@ the `API changes <../../api/api_changes.html>`_.
14881488
(instead of deprecated popen*) and distutils (for version
14891489
checking) - DSD
14901490

1491-
2008-11-30 Reimplementaion of the legend which supports baseline alignement,
1491+
2008-11-30 Reimplementation of the legend which supports baseline alignement,
14921492
multi-column, and expand mode. - JJL
14931493

14941494
2008-12-01 Fixed histogram autoscaling bug when bins or range are given
@@ -5142,7 +5142,7 @@ the `API changes <../../api/api_changes.html>`_.
51425142

51435143
2004-05-19 0.54 released
51445144

5145-
2004-05-18 Added newline seperated text with rotations to text.Text
5145+
2004-05-18 Added newline separated text with rotations to text.Text
51465146
layout - JDH
51475147

51485148
2004-05-16 Added fast pcolor using PolyCollections. - JDH
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
CheckButtons widget get_status function
22
---------------------------------------
33

4-
A :func:`get_status` function has been added the the :class:`matplotlib.widgets.CheckButtons` class. This :func:`get_status` function allows user to query the status (True/False) of all of the buttons in the CheckButtons object.
4+
A :func:`get_status` function has been added the :class:`matplotlib.widgets.CheckButtons` class. This :func:`get_status` function allows user to query the status (True/False) of all of the buttons in the CheckButtons object.

examples/api/colorbar_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# which axes object it should be near
3131
fig.colorbar(pos, ax=ax1)
3232

33-
# repeat everything above for the the negative data
33+
# repeat everything above for the negative data
3434
neg = ax2.imshow(Zneg, cmap='Reds_r', interpolation='none')
3535
fig.colorbar(neg, ax=ax2)
3636

examples/text_labels_and_annotations/tex_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
you will see a lot of output from tex and associated tools. The next
1212
time, the run may be silent, as a lot of the information is cached.
1313
14-
Notice how the the label for the y axis is provided using unicode!
14+
Notice how the label for the y axis is provided using unicode!
1515
1616
"""
1717
from __future__ import unicode_literals

extern/libqhull/io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3698,7 +3698,7 @@ coordT *qh_readpoints(int *numpoints, int *dimension, boolT *ismalloc) {
36983698
strncat(qh rbox_command, s, sizeof(qh rbox_command)-1);
36993699
}
37003700
if (!s) {
3701-
qh_fprintf(qh ferr, 6074, "qhull input error: missing \"begin\" for cdd-formated input\n");
3701+
qh_fprintf(qh ferr, 6074, "qhull input error: missing \"begin\" for cdd-formatted input\n");
37023702
qh_errexit(qh_ERRinput, NULL, NULL);
37033703
}
37043704
}

extern/ttconv/pprdrv_tt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
11021102

11031103
stream.put_char('\n');
11041104

1105-
/* This proceedure is for compatiblity with */
1105+
/* This proceedure is for compatibility with */
11061106
/* level 1 interpreters. */
11071107
stream.putline("/BuildChar {");
11081108
stream.putline(" 1 index /Encoding get exch get");

lib/matplotlib/animation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1250,7 +1250,7 @@ def to_html5_video(self):
12501250
<source type="video/mp4" src="data:video/mp4;base64,{video}">
12511251
Your browser does not support the video tag.
12521252
</video>'''
1253-
# Cache the the rendering of the video as HTML
1253+
# Cache the rendering of the video as HTML
12541254
if not hasattr(self, '_base64_video'):
12551255
# First write the video to a tempfile. Set delete to False
12561256
# so we can re-open to read binary data.

lib/matplotlib/artist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ def get_agg_filter(self):
806806

807807
def set_agg_filter(self, filter_func):
808808
"""
809-
set agg_filter fuction.
809+
set agg_filter function.
810810
811811
"""
812812
self._agg_filter = filter_func

lib/matplotlib/offsetbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1640,7 +1640,7 @@ def finalize_offset(self):
16401640
16411641
*artist_picker* is a picker method that will be
16421642
used. *finalize_offset* is called when the mouse is released. In
1643-
current implementaion of DraggableLegend and DraggableAnnotation,
1643+
current implementation of DraggableLegend and DraggableAnnotation,
16441644
*update_offset* places the artists simply in display
16451645
coordinates. And *finalize_offset* recalculate their position in
16461646
the normalized axes coordinate and set a relavant attribute.

src/_path.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1262,7 +1262,7 @@ struct _is_sorted
12621262
size = PyArray_DIM(array, 0);
12631263

12641264
// std::isnan is only in C++11, which we don't yet require,
1265-
// so we use the the "self == self" trick
1265+
// so we use the "self == self" trick
12661266
for (i = 0; i < size; ++i) {
12671267
last_value = *((T *)PyArray_GETPTR1(array, i));
12681268
if (last_value == last_value) {

0 commit comments

Comments
 (0)