summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-04-16 15:02:58 (GMT)
committerGeorg Brandl <georg@python.org>2011-04-16 15:02:58 (GMT)
commit884843dd35fa5c09c81424dd0456e67cb3eb57ca (patch)
tree3dc02b24d0af561f163db4eae85c75f852a1d699
parentd606ebe144452fcdd0aa13ef2e9737df36b8cd63 (diff)
downloadcpython-884843dd35fa5c09c81424dd0456e67cb3eb57ca.zip
cpython-884843dd35fa5c09c81424dd0456e67cb3eb57ca.tar.gz
cpython-884843dd35fa5c09c81424dd0456e67cb3eb57ca.tar.bz2
Fix duplicate "is".
-rw-r--r--Doc/library/argparse.rst2
1 files changed, 1 insertions, 1 deletions
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 @@ 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