@@ -2222,7 +2222,7 @@ def add_artist(self, a):
22222222
22232223def add_child_axes (self ,ax ):
22242224"""
2225- Add an `. AxesBase` to the Axes' children; return the child Axes.
2225+ Add an `` AxesBase` ` to the Axes' children; return the child Axes.
22262226
22272227 This is the lowlevel version. See `.axes.Axes.inset_axes`.
22282228 """
@@ -2481,7 +2481,7 @@ def relim(self, visible_only=False):
24812481
24822482def update_datalim (self ,xys ,updatex = True ,updatey = True ):
24832483"""
2484- Extend the `~.Axes. dataLim` Bbox to include the given points.
2484+ Extend the ``ax. dataLim` ` Bbox to include the given points.
24852485
24862486 If no data is set currently, the Bbox will ignore its limits and set
24872487 the bound to be the bounds of the xydata (*xys*). Otherwise, it will
@@ -2596,7 +2596,7 @@ def set_autoscale_on(self, b):
25962596@property
25972597def use_sticky_edges (self ):
25982598"""
2599- When autoscaling, whether to obey all `Artist.sticky_edges`.
2599+ When autoscaling, whether to obey all `. Artist.sticky_edges`.
26002600
26012601 Default is ``True``.
26022602
@@ -2705,9 +2705,9 @@ def margins(self, *margins, x=None, y=None, tight=True):
27052705 Notes
27062706 -----
27072707 If a previously used Axes method such as :meth:`pcolor` has set
2708- :attr:`use_sticky_edges` to `True`, only the limits not set by
2708+ :attr:`~.Axes. use_sticky_edges` to `True`, only the limits not set by
27092709 the "sticky artists" will be modified. To force all of the
2710- margins to be set, set :attr:`use_sticky_edges` to `False`
2710+ margins to be set, set :attr:`~.Axes. use_sticky_edges` to `False`
27112711 before calling :meth:`margins`.
27122712 """
27132713
@@ -3570,8 +3570,8 @@ def get_xlim(self):
35703570 See Also
35713571 --------
35723572 .Axes.set_xlim
3573- set_xbound, get_xbound
3574- invert_xaxis, xaxis_inverted
3573+ .Axes. set_xbound,.Axes. get_xbound
3574+ .Axes. invert_xaxis,.Axes. xaxis_inverted
35753575
35763576 Notes
35773577 -----
@@ -3637,9 +3637,9 @@ def set_xlim(self, left=None, right=None, emit=True, auto=False,
36373637
36383638 See Also
36393639 --------
3640- get_xlim
3641- set_xbound, get_xbound
3642- invert_xaxis, xaxis_inverted
3640+ .Axes. get_xlim
3641+ .Axes. set_xbound,.Axes. get_xbound
3642+ .Axes. invert_xaxis,.Axes. xaxis_inverted
36433643
36443644 Notes
36453645 -----
@@ -3859,8 +3859,8 @@ def get_ylim(self):
38593859 See Also
38603860 --------
38613861 .Axes.set_ylim
3862- set_ybound, get_ybound
3863- invert_yaxis, yaxis_inverted
3862+ .Axes. set_ybound,.Axes. get_ybound
3863+ .Axes. invert_yaxis,.Axes. yaxis_inverted
38643864
38653865 Notes
38663866 -----
@@ -3909,9 +3909,9 @@ def set_ylim(self, bottom=None, top=None, emit=True, auto=False,
39093909
39103910 See Also
39113911 --------
3912- get_ylim
3913- set_ybound, get_ybound
3914- invert_yaxis, yaxis_inverted
3912+ .Axes. get_ylim
3913+ .Axes. set_ybound,.Axes. get_ybound
3914+ .Axes. invert_yaxis,.Axes. yaxis_inverted
39153915
39163916 Notes
39173917 -----
@@ -4006,7 +4006,7 @@ def format_xdata(self, x):
40064006"""
40074007 Return *x* formatted as an x-value.
40084008
4009- This function will use the `. fmt_xdata` attribute if it is not None,
4009+ This function will use the `` fmt_xdata` ` attribute if it is not None,
40104010 else will fall back on the xaxis major formatter.
40114011 """
40124012return (self .fmt_xdata if self .fmt_xdata is not None
@@ -4016,7 +4016,7 @@ def format_ydata(self, y):
40164016"""
40174017 Return *y* formatted as an y-value.
40184018
4019- This function will use the `. fmt_ydata` attribute if it is not None,
4019+ This function will use the `` fmt_ydata` ` attribute if it is not None,
40204020 else will fall back on the yaxis major formatter.
40214021 """
40224022return (self .fmt_ydata if self .fmt_ydata is not None