From 39a8be18f839484a0f93fd7b0aa70f6cc39f003e Mon Sep 17 00:00:00 2001 From: Jody Klymak Date: Tue, 20 Nov 2018 06:51:49 -0800 Subject: [PATCH] Backport PR #12848: Fix spelling of the name Randall Munroe --- doc/users/prev_whats_new/whats_new_1.3.rst | 2 +- examples/showcase/xkcd.py | 8 ++++---- lib/matplotlib/_color_data.py | 2 +- tutorials/introductory/sample_plots.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/users/prev_whats_new/whats_new_1.3.rst b/doc/users/prev_whats_new/whats_new_1.3.rst index 2f7aba728851..c79122e56cbb 100644 --- a/doc/users/prev_whats_new/whats_new_1.3.rst +++ b/doc/users/prev_whats_new/whats_new_1.3.rst @@ -96,7 +96,7 @@ to modify each artist's sketch parameters individually with :align: center :scale: 50 - Xkcd + xkcd Updated Axes3D.contour methods ------------------------------ diff --git a/examples/showcase/xkcd.py b/examples/showcase/xkcd.py index 52c711119120..b7fdb56711b7 100644 --- a/examples/showcase/xkcd.py +++ b/examples/showcase/xkcd.py @@ -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() @@ -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() @@ -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() diff --git a/lib/matplotlib/_color_data.py b/lib/matplotlib/_color_data.py index 973f4a2f2435..32420fef1812 100644 --- a/lib/matplotlib/_color_data.py +++ b/lib/matplotlib/_color_data.py @@ -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 diff --git a/tutorials/introductory/sample_plots.py b/tutorials/introductory/sample_plots.py index f1a1542ebec6..28a3c580eda9 100644 --- a/tutorials/introductory/sample_plots.py +++ b/tutorials/introductory/sample_plots.py @@ -413,7 +413,7 @@ :align: center :scale: 50 - Xkcd + xkcd """ ###################################################################