diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-03 21:28:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-03 21:28:25 (GMT) |
commit | ac80c157c74cf95e89fb74d7b3ba47b07846b2c2 (patch) | |
tree | 2f1481adddce833249ec54cc81d0b2b530d34133 /Doc/library | |
parent | 6458104188813b0165f95fcc0cf48bf02a276f42 (diff) | |
download | cpython-ac80c157c74cf95e89fb74d7b3ba47b07846b2c2.zip cpython-ac80c157c74cf95e89fb74d7b3ba47b07846b2c2.tar.gz cpython-ac80c157c74cf95e89fb74d7b3ba47b07846b2c2.tar.bz2 |
rephrase
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst index f3962e0..1aab58d 100644 --- a/Doc/library/argparse.rst +++ b/Doc/library/argparse.rst @@ -67,7 +67,7 @@ The following sections walk you through this example. Creating a parser ^^^^^^^^^^^^^^^^^ -Mose uses of the :mod:`argparse` module will start out by creating an +The first step in using the :mod:`argparse` is creating an :class:`ArgumentParser` object:: >>> parser = argparse.ArgumentParser(description='Process some integers.') |