From: Ezio Melotti Date: Thu, 21 Apr 2011 20:09:27 +0000 (+0300) Subject: #11905: fix missing full stop in argparse doc. Noticed by Vladimir Rutsky. X-Git-Tag: v2.7.2rc1~125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d281f1439d9e0af4ac10deb0be3cbdaf0f1485a2;p=python #11905: fix missing full stop in argparse doc. Noticed by Vladimir Rutsky. --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index cecd47271e..e151c97ce5 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -578,7 +578,7 @@ The add_argument() method has its own more detailed description below, but in short they are: * `name or flags`_ - Either a name or a list of option strings, e.g. ``foo`` - or ``-f, --foo`` + or ``-f, --foo``. * action_ - The basic type of action to be taken when this argument is encountered at the command line.