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

Skip to content

Commit ae90091

Browse files
committed
Fix typos
1 parent 4911e3f commit ae90091

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

lib/matplotlib/backends/backend_tkagg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -320,9 +320,9 @@ def _update_pointer_position(self, guiEvent=None):
320320
# backend_bases, the canvas needs to know _lastx and _lasty.
321321
# There are three ways to get this info the canvas:
322322
#
323-
# 1) set it explicity
323+
# 1) set it explicitly
324324
#
325-
# 2) call enter/leave events explicity. The downside of this
325+
# 2) call enter/leave events explicitly. The downside of this
326326
# in the impl below is that enter could be repeatedly
327327
# triggered if thes mouse is over the axes and one is
328328
# resizing with the keyboard. This is not entirely bad,

lib/matplotlib/quiver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
quiver(X, Y, U, V, **kw)
4646
quiver(X, Y, U, V, C, **kw)
4747
48-
*U* and *V* are the arrow data, *X* and *Y* set the locaiton of the
48+
*U* and *V* are the arrow data, *X* and *Y* set the location of the
4949
arrows, and *C* sets the color of the arrows. These arguments may be 1-D or
5050
2-D arrays or sequences.
5151

lib/matplotlib/tests/test_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1481,7 +1481,7 @@ def test_contour_colorbar():
14811481
@image_comparison(baseline_images=['hist2d', 'hist2d'])
14821482
def test_hist2d():
14831483
np.random.seed(0)
1484-
# make it not symetric in case we switch x and y axis
1484+
# make it not symmetric in case we switch x and y axis
14851485
x = np.random.randn(100)*2+5
14861486
y = np.random.randn(100)-2
14871487
fig = plt.figure()

lib/mpl_toolkits/mplot3d/axes3d.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2267,7 +2267,7 @@ def add_collection3d(self, col, zs=0, zdir='z'):
22672267
22682268
Supported are:
22692269
- PolyCollection
2270-
- LineColleciton
2270+
- LineCollection
22712271
- PatchCollection
22722272
'''
22732273
zvals = np.atleast_1d(zs)

0 commit comments

Comments
 (0)