diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-21 20:09:27 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-04-21 20:09:27 (GMT) |
commit | dca309d1379f3bb64fd98bfcfbd3933729aae49e (patch) | |
tree | 8226349f2e69a694030c0ddc308b2b5b3a67f24e /Doc/library | |
parent | 2f1db7def9f243e7551a50232f17c03686efa618 (diff) | |
download | cpython-dca309d1379f3bb64fd98bfcfbd3933729aae49e.zip cpython-dca309d1379f3bb64fd98bfcfbd3933729aae49e.tar.gz cpython-dca309d1379f3bb64fd98bfcfbd3933729aae49e.tar.bz2 |
#11905: fix missing full stop in argparse doc. Noticed by Vladimir Rutsky.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index 7fad88b..13348a0 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. |