From 9e3d80a079714b000974534ec6ae13f4af90d235 Mon Sep 17 00:00:00 2001 From: Dusch4593 Date: Mon, 20 Mar 2023 22:17:44 -0400 Subject: [PATCH 1/2] Fix typo in Quick start guide tutorial --- galleries/users_explain/quick_start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galleries/users_explain/quick_start.py b/galleries/users_explain/quick_start.py index e203d042f74a..bf97b8354885 100644 --- a/galleries/users_explain/quick_start.py +++ b/galleries/users_explain/quick_start.py @@ -64,7 +64,7 @@ # fig, axs = plt.subplots(2, 2) # a figure with a 2x2 grid of Axes # # a figure with one axes on the left, and two on the right: # fig, axs = plt.subplot_mosaic([['left', 'right-top'], -# ['left', 'right_bottom]]) +# ['left', 'right_bottom']]) # # It is often convenient to create the Axes together with the Figure, but you # can also manually add Axes later on. Note that many From d9e2c4ba6c37f74cb15f3933edc2b95ebe3e4414 Mon Sep 17 00:00:00 2001 From: Brandon Dusch Date: Tue, 21 Mar 2023 12:27:16 -0400 Subject: [PATCH 2/2] Update galleries/users_explain/quick_start.py Co-authored-by: Jody Klymak --- galleries/users_explain/quick_start.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galleries/users_explain/quick_start.py b/galleries/users_explain/quick_start.py index bf97b8354885..cf2d5850e6e5 100644 --- a/galleries/users_explain/quick_start.py +++ b/galleries/users_explain/quick_start.py @@ -63,7 +63,7 @@ # fig, ax = plt.subplots() # a figure with a single Axes # fig, axs = plt.subplots(2, 2) # a figure with a 2x2 grid of Axes # # a figure with one axes on the left, and two on the right: -# fig, axs = plt.subplot_mosaic([['left', 'right-top'], +# fig, axs = plt.subplot_mosaic([['left', 'right_top'], # ['left', 'right_bottom']]) # # It is often convenient to create the Axes together with the Figure, but you