@@ -105,14 +105,14 @@ def scatter_hist(x, y, ax, ax_histx, ax_histy):
105
105
# While we recommend using one of the two methods described above, there are
106
106
# number of other ways to achieve a similar layout:
107
107
# - The Axes can be positioned manually in relative coordinates using
108
- #`~ .figure.Figure.add_axes` `.
108
+ # `~matplotlib .figure.Figure.add_axes`.
109
109
# - A gridspec can be used to create the layout
110
- # (`~. matplotlib.figure.Figure.add_gridspec`) and adding only the three desired
111
- # axes (`~.figure.Figure.add_subplots`).
110
+ # (`~matplotlib.figure.Figure.add_gridspec`) and adding only the three desired
111
+ # axes (`~matplotlib .figure.Figure.add_subplots`).
112
112
# - Four subplots can be created using `~.pyplot.subplots`, and the unused
113
- # axes in the upper right can be removed manually.
113
+ # axes in the upper right can be removed manually.
114
114
# - The ``axes_grid1`` toolkit can be used, as shown in
115
- # :doc:`/gallery/axes_grid1/scatter_hist_locatable_axes`.
115
+ # :doc:`/gallery/axes_grid1/scatter_hist_locatable_axes`.
116
116
#
117
117
# .. admonition:: References
118
118
#