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

Skip to content

Commit f9acb25

Browse files
authored
Merge pull request #20947 from meeseeksmachine/auto-backport-of-pr-20941-on-v3.5.x
Backport PR #20941 on branch v3.5.x (Fix variable capitalization in plot types headings)
2 parents fc13c2d + 732860b commit f9acb25

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)