Skip to content

Commit 8be3e9b

Browse files
committed
Fix variable capitalization in plot types headings
1 parent 1d12973 commit 8be3e9b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

plot_types/basic/pie.py

+1-1
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

+1-1
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

+1-1
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)