diff --git a/lib/matplotlib/axis.py b/lib/matplotlib/axis.py index 926def426307..f4bac57ee157 100644 --- a/lib/matplotlib/axis.py +++ b/lib/matplotlib/axis.py @@ -938,7 +938,7 @@ def set_clip_path(self, clippath, transform=None): self.stale = True def get_view_interval(self): - """Return the view limits ``(min, max)`` of this axis.""" + """Return the ``(min, max)`` view limits of this axis.""" raise NotImplementedError('Derived must override') def set_view_interval(self, vmin, vmax, ignore=False): @@ -957,7 +957,7 @@ def set_view_interval(self, vmin, vmax, ignore=False): raise NotImplementedError('Derived must override') def get_data_interval(self): - """Return the Interval instance for this axis data limits.""" + """Return the ``(min, max)`` data limits of this axis.""" raise NotImplementedError('Derived must override') def set_data_interval(self, vmin, vmax, ignore=False):