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: v3.2.1b1~86 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dca309d1379f3bb64fd98bfcfbd3933729aae49e;p=thirdparty%2FPython%2Fcpython.git #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 7fad88be0d62..13348a0f50c0 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -582,7 +582,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.