@@ -227,11 +227,10 @@ Figure has an `~.figure.Figure.add_artist` method
227
227
228
228
A method `~.figure.Figure.add_artist ` has been added to the
229
229
:class: `~.figure.Figure ` class, which allows artists to be added directly
230
- to a figure. E.g.
230
+ to a figure. E.g. ::
231
231
232
- ::
233
- circ = plt.Circle((.7, .5), .05)
234
- fig.add_artist(circ)
232
+ circ = plt.Circle((.7, .5), .05)
233
+ fig.add_artist(circ)
235
234
236
235
In case the added artist has no transform set previously, it will be set to
237
236
the figure transform (``fig.transFigure ``).
@@ -242,7 +241,7 @@ easily position static elements in figure coordinates.
242
241
243
242
244
243
Return type of ArtistInspector.get_aliases changed
245
- ``````````````````````````````````````````````````
244
+ --------------------------------------------------
246
245
247
246
`ArtistInspector.get_aliases ` previously returned the set of aliases as
248
247
``{fullname: {alias1: None, alias2: None, ...}} ``. The dict-to-None mapping
@@ -254,7 +253,7 @@ changed.
254
253
255
254
256
255
``:math: `` directive renamed to ``:mathmpl: ``
257
- `````````````````````````````````````````````
256
+ ---------------------------------------------
258
257
259
258
The ``:math: `` rst role provided by `matplotlib.sphinxext.mathmpl ` has been
260
259
renamed to ``:mathmpl: `` to avoid conflicting with the ``:math: `` role that
0 commit comments