8000 Fix variable capitalization in plot types headings · matplotlib/matplotlib@8be3e9b · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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

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