From: Georg Brandl Date: Sat, 16 Apr 2011 15:02:58 +0000 (+0200) Subject: Fix duplicate "is". X-Git-Tag: v3.3.0a1~2573 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=884843dd35fa5c09c81424dd0456e67cb3eb57ca;p=python Fix duplicate "is". --- diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index bdd946438a..2961429c05 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -221,7 +221,7 @@ the parser's help message. For example, consider a file named 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