|
20 | 20 | class LockDraw:
|
21 | 21 | """
|
22 | 22 | 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 |
24 | 24 | zoom-to-rect mode and drawing a rectangle. The module level "lock"
|
25 | 25 | allows someone to grab the lock and prevent other widgets from
|
26 | 26 | drawing. Use ``matplotlib.widgets.lock(someobj)`` to pr
|
@@ -71,7 +71,7 @@ class AxesWidget(Widget):
|
71 | 71 | *ax* : :class:`~matplotlib.axes.Axes`
|
72 | 72 | The parent axes for the widget
|
73 | 73 | *canvas* : :class:`~matplotlib.backend_bases.FigureCanvasBase` subclass
|
74 |
| - The parent figure canvs for the widget. |
| 74 | + The parent figure canvas for the widget. |
75 | 75 | *active* : bool
|
76 | 76 | If False, the widget does not respond to events.
|
77 | 77 | """
|
@@ -108,7 +108,7 @@ class Button(AxesWidget):
|
108 | 108 | """
|
109 | 109 | A GUI neutral button
|
110 | 110 |
|
111 |
| - The following attributes are accesible |
| 111 | + The following attributes are accessible |
112 | 112 |
|
113 | 113 | *ax*
|
114 | 114 | 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',
|
276 | 276 | Indicate whether the slider interval is closed
|
277 | 277 |
|
278 | 278 | *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 |
280 | 280 | of other sliders.
|
281 | 281 |
|
282 | 282 | additional kwargs are passed on to ``self.poly`` which is the
|
|
0 commit comments