8000 Merge pull request #21438 from meeseeksmachine/auto-backport-of-pr-21… · matplotlib/matplotlib@0f7f1b0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0f7f1b0

Browse files
authored
Merge pull request #21438 from meeseeksmachine/auto-backport-of-pr-21427-on-v3.5.x
Backport PR #21427 on branch v3.5.x (Update docstrings of get_{view,data}_interval.)
2 parents cdfc44f + 3da2680 commit 0f7f1b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/matplotlib/axis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ def set_clip_path(self, clippath, transform=None):
938938
self.stale = True
939939

940940
def get_view_interval(self):
941-
"""Return the view limits ``(min, max)`` of this axis."""
941+
"""Return the ``(min, max)`` view limits of this axis."""
942942
raise NotImplementedError('Derived must override')
943943

944944
def set_view_interval(self, vmin, vmax, ignore=False):
@@ -957,7 +957,7 @@ def set_view_interval(self, vmin, vmax, ignore=False):
957957
raise NotImplementedError('Derived must override')
958958

959959
def get_data_interval(self):
960-
"""Return the Interval instance for this axis data limits."""
960+
"""Return the ``(min, max)`` data limits of this axis."""
961961
raise NotImplementedError('Derived must override')
962962

963963
def set_data_interval(self, vmin, vmax, ignore=False):

0 commit comments

Comments
 (0)
0