summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2011-11-11 14:42:11 (GMT)
committerEli Bendersky <eliben@gmail.com>2011-11-11 14:42:11 (GMT)
commitbba1dd53322f1f5297109b9bb302172206198dc3 (patch)
treed6f39d75c57bf6e3f3e48bc675cce8b7159faa99
parent6a570d6b9af07a03859dd2175086e45ab60f4ee9 (diff)
downloadcpython-bba1dd53322f1f5297109b9bb302172206198dc3.zip
cpython-bba1dd53322f1f5297109b9bb302172206198dc3.tar.gz
cpython-bba1dd53322f1f5297109b9bb302172206198dc3.tar.bz2
Issue #13191: typo in argparse docs
-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 09f97a9..3b83110 100644
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -1056,7 +1056,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::