We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1709db8 + d99bf41 commit 2327801Copy full SHA for 2327801
lib/matplotlib/axis.py
@@ -1320,7 +1320,7 @@ def get_minor_formatter(self):
1320
return self.minor.formatter
1321
1322
def get_major_ticks(self, numticks=None):
1323
- """Get the tick instances; grow as necessary."""
+ r"""Return the list of major `.Tick`\s."""
1324
if numticks is None:
1325
numticks = len(self.get_majorticklocs())
1326
@@ -1334,7 +1334,7 @@ def get_major_ticks(self, numticks=None):
1334
return self.majorTicks[:numticks]
1335
1336
def get_minor_ticks(self, numticks=None):
1337
- """Get the minor tick instances; grow as necessary."""
+ r"""Return the list of minor `.Tick`\s."""
1338
1339
numticks = len(self.get_minorticklocs())
1340
0 commit comments