8000 Fix typo in Quick start guide tutorial by Dusch4593 · Pull Request #25519 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix typo in Quick start guide tutorial #25519

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

Merged
merged 2 commits into from
Mar 22, 2023
Merged
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
4 changes: 2 additions & 2 deletions galleries/users_explain/quick_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
# 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'],
# ['left', 'right_bottom]])
# 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
# can also manually add Axes later on. Note that many
Expand Down
0