[Python-checkins] cpython (2.7): #16796: fix typo. Patch by Michael Schurter.

ezio.melotti python-checkins at python.org
Fri Dec 28 01:00:55 CET 2012


http://hg.python.org/cpython/rev/c1623a032adf
changeset:   81113:c1623a032adf
branch:      2.7
user:        Ezio Melotti <ezio.melotti at gmail.com>
date:        Fri Dec 28 01:59:24 2012 +0200
summary:
  #16796: fix typo.  Patch by Michael Schurter.

files:
  Doc/library/argparse.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -1439,7 +1439,7 @@
    different functions which require different kinds of command-line arguments.
    :class:`ArgumentParser` supports the creation of such sub-commands with the
    :meth:`add_subparsers` method.  The :meth:`add_subparsers` method is normally
-   called with no arguments and returns an special action object.  This object
+   called with no arguments and returns a special action object.  This object
    has a single method, :meth:`~ArgumentParser.add_parser`, which takes a
    command name and any :class:`ArgumentParser` constructor arguments, and
    returns an :class:`ArgumentParser` object that can be modified as usual.

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list