]> granicus.if.org Git - python/commitdiff
Issue #13191: typo in argparse docs
authorEli Bendersky <eliben@gmail.com>
Fri, 11 Nov 2011 14:42:11 +0000 (16:42 +0200)
committerEli Bendersky <eliben@gmail.com>
Fri, 11 Nov 2011 14:42:11 +0000 (16:42 +0200)
Doc/library/argparse.rst

index 09f97a9a169066e8378d4a113aa8dc537ea01eeb..3b8311098a26fb72265fe24a51f09748e8a88bd5 100644 (file)
@@ -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::