From a626ada2e06e8c9b0e5a779c436db6405ec71945 Mon Sep 17 00:00:00 2001 From: David Stansby Date: Tue, 11 Jul 2017 18:42:19 +0100 Subject: [PATCH] Fix method/class links in docstring --- lib/matplotlib/axes/_axes.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/matplotlib/axes/_axes.py b/lib/matplotlib/axes/_axes.py index ba530a56282b..af2a0b60d985 100644 --- a/lib/matplotlib/axes/_axes.py +++ b/lib/matplotlib/axes/_axes.py @@ -1456,15 +1456,15 @@ def plot_date(self, x, y, fmt='o', tz=None, xdate=True, ydate=False, Note if you are using custom date tickers and formatters, it may be necessary to set the formatters/locators after the call - to meth:`plot_date` since meth:`plot_date` will set the + to :meth:`plot_date` since :meth:`plot_date` will set the default tick locator to - class:`matplotlib.dates.AutoDateLocator` (if the tick + :class:`matplotlib.dates.AutoDateLocator` (if the tick locator is not already set to a - class:`matplotlib.dates.DateLocator` instance) and the + :class:`matplotlib.dates.DateLocator` instance) and the default tick formatter to - class:`matplotlib.dates.AutoDateFormatter` (if the tick + :class:`matplotlib.dates.AutoDateFormatter` (if the tick formatter is not already set to a - class:`matplotlib.dates.DateFormatter` instance). + :class:`matplotlib.dates.DateFormatter` instance). Parameters