8000 Documentation mistake in pyplot.py corrected by surana-mudit · Pull Request #10055 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Documentation mistake in pyplot.py corrected #10055

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 1 commit into from
Dec 21, 2017
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
2 changes: 1 addition & 1 deletion tutorials/introductory/pyplot.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def f(t):
# ``figure(1)`` will be created by default, just as a ``subplot(111)``
# will be created by default if you don't manually specify any axes. The
# :func:`~matplotlib.pyplot.subplot` command specifies ``numrows,
# numcols, fignum`` where ``fignum`` ranges from 1 to
# numcols, plot_number`` where ``plot_number`` ranges from 1 to
# ``numrows*numcols``. The commas in th 46EF e ``subplot`` command are
# optional if ``numrows*numcols<10``. So ``subplot(211)`` is identical
# to ``subplot(2, 1, 1)``.
Expand Down
0