summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-04-21 23:09:27 +0300
committerEzio Melotti <ezio.melotti@gmail.com>2011-04-21 23:09:27 +0300
commitd281f1439d9e0af4ac10deb0be3cbdaf0f1485a2 (patch)
tree57decc58d3081e050c105f1edcd14930df55eca5
parent310619c80f3762d7f42812303920acfbe45cef86 (diff)
downloadcpython-git-d281f1439d9e0af4ac10deb0be3cbdaf0f1485a2.tar.gz
#11905: fix missing full stop in argparse doc. Noticed by Vladimir Rutsky.
-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 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.