summaryrefslogtreecommitdiffstats
path: root/Doc/library/argparse.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-21 20:09:27 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-21 20:09:27 (GMT)
commitdca309d1379f3bb64fd98bfcfbd3933729aae49e (patch)
tree8226349f2e69a694030c0ddc308b2b5b3a67f24e /Doc/library/argparse.rst
parent2f1db7def9f243e7551a50232f17c03686efa618 (diff)
downloadcpython-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/argparse.rst')
-rw-r--r--Doc/library/argparse.rst2
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.