From 0d42f09519acdbfca2da8065602a659131434fd2 Mon Sep 17 00:00:00 2001 From: Mudit Surana Date: Wed, 20 Dec 2017 19:17:50 +0530 Subject: [PATCH] updated pyplot.py --- tutorials/introductory/pyplot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/introductory/pyplot.py b/tutorials/introductory/pyplot.py index efe6cc18f2ba..f2bc82e7beb4 100644 --- a/tutorials/introductory/pyplot.py +++ b/tutorials/introductory/pyplot.py @@ -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 the ``subplot`` command are # optional if ``numrows*numcols<10``. So ``subplot(211)`` is identical # to ``subplot(2, 1, 1)``.