@@ -213,7 +213,7 @@ Blocking functions
213
213
------------------
214
EF2F
214
215
215
If you only need to collect points in an Axes you can use
216
- `.figure. Figure.ginput ` or more generally the tools from
216
+ `.Figure.ginput ` or more generally the tools from
217
217
`.blocking_input ` the tools will take care of starting and stopping
218
218
the event loop for you. However if you have written some custom event
219
219
handling or are using `.widgets ` you will need to manually run the GUI
@@ -315,7 +315,7 @@ Artists (as of Matplotlib 1.5) have a **stale** attribute which is
315
315
`True ` if the internal state of the artist has changed since the last
316
316
time it was rendered. By default the stale state is propagated up to
317
317
the Artists parents in the draw tree, e.g., if the color of a `.Line2D `
318
- instance is changed, the `.axes.Axes ` and `.figure .Figure ` that
318
+ instance is changed, the `~ .axes.Axes ` and `.Figure ` that
319
319
contain it will also be marked as "stale". Thus, ``fig.stale `` will
320
320
report if any artist in the figure has been modified and is out of sync
321
321
with what is displayed on the screen. This is intended to be used to
@@ -332,11 +332,11 @@ which by default is set to a function that forwards the stale state to
332
332
the artist's parent. If you wish to suppress a given artist from propagating
333
333
set this attribute to None.
334
334
335
- `.figure. Figure ` instances do not have a containing artist and their
335
+ `.Figure ` instances do not have a containing artist and their
336
336
default callback is `None `. If you call `.pyplot.ion ` and are not in
337
337
``IPython `` we will install a callback to invoke
338
338
`~.backend_bases.FigureCanvasBase.draw_idle ` whenever the
339
- `.figure. Figure ` becomes stale. In ``IPython `` we use the
339
+ `.Figure ` becomes stale. In ``IPython `` we use the
340
340
``'post_execute' `` hook to invoke
341
341
`~.backend_bases.FigureCanvasBase.draw_idle ` on any stale figures
342
342
after having executed the user's input, but before returning the prompt
0 commit comments