Skip to content

Commit cd22525

Browse files
committed
revert the change in names in examples
1 parent bde83d4 commit cd22525

11 files changed

+8
-8
lines changed

doc/users/screenshots.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ command, which includes customizations such as error bars:
103103
It's also simple to create stacked bars
104104
(`bar_stacked.py <../examples/pylab_examples/bar_stacked.html>`_),
105105
or horizontal bar charts
106-
(`plot_barh.py <../examples/lines_bars_and_markers/plot_barh.html>`_).
106+
(`barh_demo.py <../examples/lines_bars_and_markers/barh_demo.html>`_).
107107

108108
.. _screenshots_pie_demo:
109109

@@ -166,7 +166,7 @@ Fill demo
166166
The :func:`~matplotlib.pyplot.fill` command lets you
167167
plot filled curves and polygons:
168168

169-
.. plot:: mpl_examples/lines_bars_and_markers/plot_fill.py
169+
.. plot:: mpl_examples/lines_bars_and_markers/fill_demo.py
170170

171171
Thanks to Andrew Straw for adding this function.
172172

examples/tests/backend_driver.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
files = dict()
5252

5353
files['lines'] = [
54-
'plot_barh.py',
55-
'plot_fill.py',
56-
'plot_fill_features.py',
57-
'plot_line_dash_control.py',
58-
'plot_line_styles_reference.py',
54+
'barh_demo.py',
55+
'fill_demo.py',
56+
'fill_demo_features.py',
57+
'line_demo_dash_control.py',
58+
'line_styles_reference.py',
5959
'scatter_with_legend.py'
6060
]
6161

lib/matplotlib/axes/_axes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4679,7 +4679,7 @@ def fill(self, *args, **kwargs):
46794679
46804680
Examples
46814681
--------
4682-
.. plot:: mpl_examples/lines_bars_and_markers/plot_fill.py
4682+
.. plot:: mpl_examples/lines_bars_and_markers/fill_demo.py
46834683
46844684
46854685
"""

0 commit comments

Comments
 (0)