From bd459ba3bb0cf9ed84a460bb1974705234ce188d Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Fri, 9 Aug 2019 00:10:33 +0200 Subject: [PATCH] Fix bad missing-references.json due to PR merge race condition. aka some missing references were fixed between the last build of the nitpicky-mode PR and its merge. --- doc/missing-references.json | 7 +------ tutorials/introductory/usage.py | 6 +++--- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/doc/missing-references.json b/doc/missing-references.json index de3ff941fabf..39d4495c09fd 100644 --- a/doc/missing-references.json +++ b/doc/missing-references.json @@ -669,7 +669,6 @@ "doc/gallery/animation/animated_histogram.rst:112", "doc/gallery/statistics/errorbars_and_boxes.rst:21", "doc/users/prev_whats_new/whats_new_1.5.rst:514", - "lib/matplotlib/colorbar.py:docstring of matplotlib.colorbar.ColorbarBase:38", "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.delaxes:2", "lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.plotting:33" ], @@ -1372,7 +1371,6 @@ "lib/matplotlib/collections.py:docstring of matplotlib.collections.QuadMesh.convert_xunits:4" ], "LineCollection": [ - "lib/matplotlib/colorbar.py:docstring of matplotlib.colorbar.ColorbarBase:41", "lib/matplotlib/container.py:docstring of matplotlib.container.StemContainer:40" ], "#rrggbb": [ @@ -3228,9 +3226,6 @@ "set_color": [ "doc/faq/howto_faq.rst:45" ], - "https://virtualenv.pypa.io/": [ - "doc/faq/virtualenv_faq.rst:54" - ], "Patch": [ "doc/gallery/animation/animated_histogram.rst:112", "doc/users/prev_whats_new/whats_new_1.5.rst:321", @@ -5366,4 +5361,4 @@ "doc/users/prev_whats_new/whats_new_1.5.rst:737" ] } -} \ No newline at end of file +} diff --git a/tutorials/introductory/usage.py b/tutorials/introductory/usage.py index 2ecdc2972a27..641e733fb55f 100644 --- a/tutorials/introductory/usage.py +++ b/tutorials/introductory/usage.py @@ -496,9 +496,9 @@ def my_plotter(ax, data1, data2, param_dict): # Using non-builtin backends # -------------------------- # More generally, any importable backend can be selected by using any of the -# methods above. If `name.of.the.backend` is the module containing the backend, -# use `module://name.of.the.backend` as the backend name, e.g. -# `matplotlib.use('module://name.of.the.backend')`. +# methods above. If ``name.of.the.backend`` is the module containing the +# backend, use ``module://name.of.the.backend`` as the backend name, e.g. +# ``matplotlib.use('module://name.of.the.backend')``. # # # .. _interactive-mode: