Skip to content

Backport PR #12848 on branch v3.0.2-doc (Fix spelling of the name Randall Munroe) #12895

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/users/prev_whats_new/whats_new_1.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ to modify each artist's sketch parameters individually with
:align: center
:scale: 50

Xkcd
xkcd

Updated Axes3D.contour methods
------------------------------
Expand Down
8 changes: 4 additions & 4 deletions examples/showcase/xkcd.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
###############################################################################

with plt.xkcd():
# Based on "Stove Ownership" from XKCD by Randall Monroe
# Based on "Stove Ownership" from XKCD by Randall Munroe
# http://xkcd.com/418/

fig = plt.figure()
Expand All @@ -35,13 +35,13 @@
plt.ylabel('my overall health')
fig.text(
0.5, 0.05,
'"Stove Ownership" from xkcd by Randall Monroe',
'"Stove Ownership" from xkcd by Randall Munroe',
ha='center')

###############################################################################

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

fig = plt.figure()
Expand All @@ -60,7 +60,7 @@

fig.text(
0.5, 0.05,
'"The Data So Far" from xkcd by Randall Monroe',
'"The Data So Far" from xkcd by Randall Munroe',
ha='center')

plt.show()
2 changes: 1 addition & 1 deletion lib/matplotlib/_color_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
('tab:' + name, value) for name, value in TABLEAU_COLORS)

# This mapping of color names -> hex values is taken from
# a survey run by Randel Monroe see:
# a survey run by Randall Munroe see:
# http://blog.xkcd.com/2010/05/03/color-survey-results/
# for more details. The results are hosted at
# https://xkcd.com/color/rgb.txt
Expand Down
2 changes: 1 addition & 1 deletion tutorials/introductory/sample_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@
:align: center
:scale: 50

Xkcd
xkcd
"""

###################################################################
Expand Down