Skip to content

Commit e0dc09b

Browse files
authored
Merge pull request #12896 from meeseeksmachine/auto-backport-of-pr-12848-on-v3.0.x
Backport PR #12848 on branch v3.0.x (Fix spelling of the name Randall Munroe)
2 parents d0e727b + 6b47299 commit e0dc09b

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

doc/users/prev_whats_new/whats_new_1.3.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ to modify each artist's sketch parameters individually with
9696
:align: center
9797
:scale: 50
9898

99-
Xkcd
99+
xkcd
100100

101101
Updated Axes3D.contour methods
102102
------------------------------

examples/showcase/xkcd.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
###############################################################################
1212

1313
with plt.xkcd():
14-
# Based on "Stove Ownership" from XKCD by Randall Monroe
14+
# Based on "Stove Ownership" from XKCD by Randall Munroe
1515
# http://xkcd.com/418/
1616

1717
fig = plt.figure()
@@ -35,13 +35,13 @@
3535
plt.ylabel('my overall health')
3636
fig.text(
3737
0.5, 0.05,
38-
'"Stove Ownership" from xkcd by Randall Monroe',
38+
'"Stove Ownership" from xkcd by Randall Munroe',
3939
ha='center')
4040

4141
###############################################################################
4242

4343
with plt.xkcd():
44-
# Based on "The Data So Far" from XKCD by Randall Monroe
44+
# Based on "The Data So Far" from XKCD by Randall Munroe
4545
# http://xkcd.com/373/
4646

4747
fig = plt.figure()
@@ -60,7 +60,7 @@
6060

6161
fig.text(
6262
0.5, 0.05,
63-
'"The Data So Far" from xkcd by Randall Monroe',
63+
'"The Data So Far" from xkcd by Randall Munroe',
6464
ha='center')
6565

6666
plt.show()

lib/matplotlib/_color_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
('tab:' + name, value) for name, value in TABLEAU_COLORS)
3232

3333
# This mapping of color names -> hex values is taken from
34-
# a survey run by Randel Monroe see:
34+
# a survey run by Randall Munroe see:
3535
# http://blog.xkcd.com/2010/05/03/color-survey-results/
3636
# for more details. The results are hosted at
3737
# https://xkcd.com/color/rgb.txt

tutorials/introductory/sample_plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@
413413
:align: center
414414
:scale: 50
415415
416-
Xkcd
416+
xkcd
417417
"""
418418

419419
###################################################################

0 commit comments

Comments
 (0)