summaryrefslogtreecommitdiffstats
path: root/Doc/library/argparse.rst
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2011-11-11 08:58:36 (GMT)
committerEli Bendersky <eliben@gmail.com>2011-11-11 08:58:36 (GMT)
commit28a08205c5112bde6585ec60bfdf48c8363c15b6 (patch)
treefc5f7c405a61007dd1bb7909711a73d0e51cec9e /Doc/library/argparse.rst
parent6e9002c8e04add1aa9de165a369ba23c21221bff (diff)
parenta7795dbe9ab2bb10692e551299183306e44e5c74 (diff)
downloadcpython-28a08205c5112bde6585ec60bfdf48c8363c15b6.zip
cpython-28a08205c5112bde6585ec60bfdf48c8363c15b6.tar.gz
cpython-28a08205c5112bde6585ec60bfdf48c8363c15b6.tar.bz2
Issue #13191: typo in argparse docs
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 7a92052..0d6925d 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -1079,7 +1079,7 @@ to each expected argument. By default, ArgumentParser objects use the dest_
value as the "name" of each object. By default, for positional argument
actions, the dest_ value is used directly, and for optional argument actions,
the dest_ value is uppercased. So, a single positional argument with
-``dest='bar'`` will that argument will be referred to as ``bar``. A single
+``dest='bar'`` will be referred to as ``bar``. A single
optional argument ``--foo`` that should be followed by a single command-line argument
will be referred to as ``FOO``. An example::