[Python-checkins] cpython (2.7): Issue #13191: typo in argparse docs

eli.bendersky python-checkins at python.org
Fri Nov 11 15:32:25 CET 2011


http://hg.python.org/cpython/rev/477f633aa09d
changeset:   73498:477f633aa09d
branch:      2.7
parent:      73471:e7b6dca28a2f
user:        Eli Bendersky <eliben at gmail.com>
date:        Fri Nov 11 16:42:11 2011 +0200
summary:
  Issue #13191: typo in argparse docs

files:
  Doc/library/argparse.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -1056,7 +1056,7 @@
 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::
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list