From 8cf64d199a5fb1c2e85048a2b7be33db68fadc37 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 19 Aug 2015 10:27:01 -0700 Subject: [PATCH] Grammar fix "an axes" -> "any axes" --- doc/users/pyplot_tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/users/pyplot_tutorial.rst b/doc/users/pyplot_tutorial.rst index f13ca6d37621..d92218c6bf42 100644 --- a/doc/users/pyplot_tutorial.rst +++ b/doc/users/pyplot_tutorial.rst @@ -164,7 +164,7 @@ scenes. Below is a script to create two subplots. The :func:`~matplotlib.pyplot.figure` command here is optional because ``figure(1)`` will be created by default, just as a ``subplot(111)`` -will be created by default if you don't manually specify an axes. The +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 ``numrows*numcols``. The commas in the ``subplot`` command are