Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 732860b

Browse files
story645meeseeksmachine
authored andcommitted
Backport PR #20941: Fix variable capitalization in plot types headings
1 parent fc13c2d commit 732860b

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)