Skip to content

Commit b591246

Browse files
committed
spell checking
1 parent b33a031 commit b591246

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/widgets.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class LockDraw:
2121
"""
2222
Some widgets, like the cursor, draw onto the canvas, and this is not
23-
desirable under all circumstaces, like when the toolbar is in
23+
desirable under all circumstances, like when the toolbar is in
2424
zoom-to-rect mode and drawing a rectangle. The module level "lock"
2525
allows someone to grab the lock and prevent other widgets from
2626
drawing. Use ``matplotlib.widgets.lock(someobj)`` to pr
@@ -71,7 +71,7 @@ class AxesWidget(Widget):
7171
*ax* : :class:`~matplotlib.axes.Axes`
7272
The parent axes for the widget
7373
*canvas* : :class:`~matplotlib.backend_bases.FigureCanvasBase` subclass
74-
The parent figure canvs for the widget.
74+
The parent figure canvas for the widget.
7575
*active* : bool
7676
If False, the widget does not respond to events.
7777
"""
@@ -108,7 +108,7 @@ class Button(AxesWidget):
108108
"""
109109
A GUI neutral button
110110
111-
The following attributes are accesible
111+
The following attributes are accessible
112112
113113
*ax*
114114
The :class:`matplotlib.axes.Axes` the button renders into.
@@ -276,7 +276,7 @@ def __init__(self, ax, label, valmin, valmax, valinit=0.5, valfmt='%1.2f',
276276
Indicate whether the slider interval is closed
277277
278278
*slidermin* and *slidermax*
279-
Used to contrain the value of this slider to the values
279+
Used to constrain the value of this slider to the values
280280
of other sliders.
281281
282282
additional kwargs are passed on to ``self.poly`` which is the

0 commit comments

Comments
 (0)