Skip to content

DOC: Added link to class under discussion #23705

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 22, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions tutorials/text/annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@
# Using ConnectionPatch
# ~~~~~~~~~~~~~~~~~~~~~
#
# ConnectionPatch is like an annotation without text. While `~.Axes.annotate`
# is sufficient in most situations, ConnectionPatch is useful when you want to
# `.ConnectionPatch` is like an annotation without text. While `~.Axes.annotate`
# is sufficient in most situations, ``ConnectionPatch`` is useful when you want to
# connect points in different axes. ::
#
# from matplotlib.patches import ConnectionPatch
Expand All @@ -457,7 +457,7 @@
# :target: ../../gallery/userdemo/connect_simple01.html
# :align: center
#
# Here, we added the ConnectionPatch to the *figure* (with `~.Figure.add_artist`)
# Here, we added the ``ConnectionPatch`` to the *figure* (with `~.Figure.add_artist`)
# rather than to either axes: this ensures that it is drawn on top of both axes,
# and is also necessary if using :doc:`constrained_layout
# </tutorials/intermediate/constrainedlayout_guide>` for positioning the axes.
Expand Down