From: Ezio Melotti Date: Thu, 27 Dec 2012 23:59:24 +0000 (+0200) Subject: #16796: fix typo. Patch by Michael Schurter. X-Git-Tag: v2.7.5~109^2~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=82ee30384c02d26293c41dbb64d9ac36d30bd888;p=thirdparty%2FPython%2Fcpython.git #16796: fix typo. Patch by Michael Schurter. --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 2380a509e942..73d454e8edfa 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1439,7 +1439,7 @@ Sub-commands 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.