From 52336f0b50e82bf438b54430e166de5868e9d66e Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Fri, 28 Dec 2012 01:59:24 +0200 Subject: [PATCH] #16796: fix typo. Patch by Michael Schurter. --- Doc/library/argparse.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 5273e9b12c4..3c2b862cc5f 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -1440,7 +1440,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.