8000 Merge pull request #20941 from timhoffm/plot-types-capitalization · matplotlib/matplotlib@9cbdc75 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9cbdc75

Browse files
authored
Merge pull request #20941 from timhoffm/plot-types-capitalization
Fix variable capitalization in plot types headings
2 parents 1d12973 + 8be3e9b commit 9cbdc75

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

plot_types/basic/pie.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
======
3-
pie(X)
3+
pie(x)
44
======
55
66
See `~matplotlib.axes.Axes.pie`.

plot_types/basic/plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
==========
3-
plot(X, Y)
3+
plot(x, y)
44
==========
55
66
See `~matplotlib.axes.Axes.plot`.

plot_types/basic/scatter_plot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
=============
3-
scatter(X, Y)
3+
scatter(x, y)
44
=============
55
66
See `~matplotlib.axes.Axes.scatter`.

0 commit comments

Comments
 (0)
0