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 28a79f4

Browse filesBrowse files
committed
Fix links of parameter types
1 parent 98490c4 commit 28a79f4
Copy full SHA for 28a79f4

File tree

Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed

‎lib/matplotlib/axis.py

Copy file name to clipboardExpand all lines: lib/matplotlib/axis.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1629,7 +1629,7 @@ def set_major_formatter(self, formatter):
16291629
16301630
Parameters
16311631
----------
1632-
formatter : ~matplotlib.ticker.Formatter
1632+
formatter : `~matplotlib.ticker.Formatter`
16331633
"""
16341634
if not isinstance(formatter, mticker.Formatter):
16351635
raise TypeError("formatter argument should be instance of "
@@ -1645,7 +1645,7 @@ def set_minor_formatter(self, formatter):
16451645
16461646
Parameters
16471647
----------
1648-
formatter : ~matplotlib.ticker.Formatter
1648+
formatter : `~matplotlib.ticker.Formatter`
16491649
"""
16501650
if not isinstance(formatter, mticker.Formatter):
16511651
raise TypeError("formatter argument should be instance of "
@@ -1661,7 +1661,7 @@ def set_major_locator(self, locator):
16611661
16621662
Parameters
16631663
----------
1664-
locator : ~matplotlib.ticker.Locator
1664+
locator : `~matplotlib.ticker.Locator`
16651665
"""
16661666
if not isinstance(locator, mticker.Locator):
16671667
raise TypeError("locator argument should be instance of "
@@ -1679,7 +1679,7 @@ def set_minor_locator(self, locator):
16791679
16801680
Parameters
16811681
----------
1682-
locator : ~matplotlib.ticker.Locator
1682+
locator : `~matplotlib.ticker.Locator`
16831683
"""
16841684
if not isinstance(locator, mticker.Locator):
16851685
raise TypeError("locator argument should be instance of "

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.