Fix duplicate "is".
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
index bdd9464..2961429 100644
--- 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