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

Skip to content

Commit 4066809

Browse files
authored
Merge pull request #14492 from meeseeksmachine/auto-backport-of-pr-14490-on-v3.1.x
Backport PR #14490 on branch v3.1.x (Fix links of parameter types)
2 parents 4bdfb07 + c2dda6d commit 4066809

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/axis.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,7 @@ def set_major_formatter(self, formatter):
16071607
16081608
Parameters
16091609
----------
1610-
formatter : ~matplotlib.ticker.Formatter
1610+
formatter : `~matplotlib.ticker.Formatter`
16111611
"""
16121612
if not isinstance(formatter, mticker.Formatter):
16131613
raise TypeError("formatter argument should be instance of "
@@ -1623,7 +1623,7 @@ def set_minor_formatter(self, formatter):
16231623
16241624
Parameters
16251625
----------
1626-
formatter : ~matplotlib.ticker.Formatter
1626+
formatter : `~matplotlib.ticker.Formatter`
16271627
"""
16281628
if not isinstance(formatter, mticker.Formatter):
16291629
raise TypeError("formatter argument should be instance of "
@@ -1639,7 +1639,7 @@ def set_major_locator(self, locator):
16391639
16401640
Parameters
16411641
----------
1642-
locator : ~matplotlib.ticker.Locator
1642+
locator : `~matplotlib.ticker.Locator`
16431643
"""
16441644
if not isinstance(locator, mticker.Locator):
16451645
raise TypeError("locator argument should be instance of "
@@ -1657,7 +1657,7 @@ def set_minor_locator(self, locator):
16571657
16581658
Parameters
16591659
----------
1660-
locator : ~matplotlib.ticker.Locator
1660+
locator : `~matplotlib.ticker.Locator`
16611661
"""
16621662
if not isinstance(locator, mticker.Locator):
16631663
raise TypeError("locator argument should be instance of "

0 commit comments

Comments
 (0)
0