From 73f0b40a254f141261f47d71eab4a140e1aa3cff Mon Sep 17 00:00:00 2001 From: Scott Shambaugh <14363975+scottshambaugh@users.noreply.github.com> Date: Tue, 28 Jan 2025 10:49:56 -0700 Subject: [PATCH] Backport PR #29536: Fix typo in solarized example plot. --- galleries/examples/style_sheets/plot_solarizedlight2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galleries/examples/style_sheets/plot_solarizedlight2.py b/galleries/examples/style_sheets/plot_solarizedlight2.py index c1d37422216a..a6434f5ef04a 100644 --- a/galleries/examples/style_sheets/plot_solarizedlight2.py +++ b/galleries/examples/style_sheets/plot_solarizedlight2.py @@ -32,7 +32,7 @@ plt.plot(x, np.sin(x) + x + np.random.randn(50)) plt.plot(x, np.sin(x) + 2 * x + np.random.randn(50)) plt.plot(x, np.sin(x) + 3 * x + np.random.randn(50)) - plt.plot(x, np.sin(x) + 4 + np.random.randn(50)) + plt.plot(x, np.sin(x) + 4 * x + np.random.randn(50)) plt.plot(x, np.sin(x) + 5 * x + np.random.randn(50)) plt.plot(x, np.sin(x) + 6 * x + np.random.randn(50)) plt.plot(x, np.sin(x) + 7 * x + np.random.randn(50))