[Python-checkins] cpython: Fix duplicate "is".

georg.brandl python-checkins at python.org
Sat Apr 16 17:03:05 CEST 2011


http://hg.python.org/cpython/rev/8a9f8f34d9d5
changeset:   69398:8a9f8f34d9d5
user:        Georg Brandl <georg at python.org>
date:        Sat Apr 16 17:02:58 2011 +0200
summary:
  Fix duplicate "is".

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
@@ -221,7 +221,7 @@
    parser.add_argument('--foo', help='foo help')
    args = parser.parse_args()
 
-If ``-h`` or ``--help`` is supplied is at the command line, the ArgumentParser
+If ``-h`` or ``--help`` is supplied at the command line, the ArgumentParser
 help will be printed::
 
    $ python myprogram.py --help

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


More information about the Python-checkins mailing list