Skip to content

Commit a122e06

Browse files
committed
DOC: fix xrefs
1 parent 63ed7e8 commit a122e06

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

mpl_gui/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -279,16 +279,16 @@ def close(self, val):
279279
- start the destruction process of an UI (the event loop may need to
280280
run to complete this process and if the user is holding hard
281281
references to any of the UI elements they may remain alive).
282-
- Remove the `Figure` from this Registry.
282+
- Remove the `~matplotlib.figure.Figure` from this Registry.
283283
284284
We will no longer have any hard references to the Figure, but if
285-
the user does the `Figure` (and its components) will not be garbage
285+
the user does the `~matplotlib.figure.Figure` (and its components) will not be garbage
286286
collected. Due to the circular references in Matplotlib these
287287
objects may not be collected until the full cyclic garbage collection
288288
runs.
289289
290-
If the user still has a reference to the `Figure` they can re-show the
291-
figure via `show`, but the `FigureRegistry` will not be aware of it.
290+
If the user still has a reference to the `~matplotlib.figure.Figure` they can re-show the
291+
figure via `show`, but the `.FigureRegistry` will not be aware of it.
292292
293293
Parameters
294294
----------
@@ -297,9 +297,9 @@ def close(self, val):
297297
- The special case of 'all' closes all open Figures
298298
- If any other string is passed, it is interpreted as a key in
299299
`by_label` and that Figure is closed
300-
- If an integer it is interpreted as a key in `by_number` and that
300+
- If an integer it is interpreted as a key in `.FigureRegistry.by_number` and that
301301
Figure is closed
302-
- If it is a `Figure` instance, then that figure is closed
302+
- If it is a `~matplotlib.figure.Figure` instance, then that figure is closed
303303
304304
"""
305305
if val == "all":

0 commit comments

Comments
 (0)