8000 Backport PR #14490: Fix links of parameter types · matplotlib/matplotlib@c2dda6d · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c2dda6d

Browse files
timhoffmMeeseeksDev[bot]
authored andcommitted
Backport PR #14490: Fix links of parameter types
1 parent 4bdfb07 commit c2dda6d

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