@@ -213,7 +213,7 @@ Blocking functions
213213------------------
214214
215215If 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
217217`.blocking_input ` the tools will take care of starting and stopping
218218the event loop for you. However if you have written some custom event
219219handling 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
315315`True ` if the internal state of the artist has changed since the last
316316time it was rendered. By default the stale state is propagated up to
317317the 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
319319contain it will also be marked as "stale". Thus, ``fig.stale `` will
320320report if any artist in the figure has been modified and is out of sync
321321with 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
332332the artist's parent. If you wish to suppress a given artist from propagating
333333set this attribute to None.
334334
335- `.figure. Figure ` instances do not have a containing artist and their
335+ `.Figure ` instances do not have a containing artist and their
336336default callback is `None `. If you call `.pyplot.ion ` and are not in
337337``IPython `` we will install a callback to invoke
338338`~.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
340340``'post_execute' `` hook to invoke
341341`~.backend_bases.FigureCanvasBase.draw_idle ` on any stale figures
342342after having executed the user's input, but before returning the prompt
0 commit comments