From 6326d568459187eb12b522ad03e8a588db81b07c Mon Sep 17 00:00:00 2001 From: Johannes Kopton Date: Tue, 28 Jan 2025 17:35:10 +0100 Subject: [PATCH] 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))