diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-05 08:39:36 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-05 08:39:36 (GMT) |
commit | c8986682ecb09d2ff8be991f570852d7ed068464 (patch) | |
tree | b1d9dd04c60683a6fe57cadb8136f4ca259a19fa /Doc/howto/argparse.rst | |
parent | 457f48241df226fead016ba0c99a87e1afb67263 (diff) | |
download | cpython-c8986682ecb09d2ff8be991f570852d7ed068464.zip cpython-c8986682ecb09d2ff8be991f570852d7ed068464.tar.gz cpython-c8986682ecb09d2ff8be991f570852d7ed068464.tar.bz2 |
Fix typo
Diffstat (limited to 'Doc/howto/argparse.rst')
-rw-r--r-- | Doc/howto/argparse.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index c0b3f94..3d49d35 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -668,7 +668,7 @@ Conflicting options So far, we have been working with two methods of an :class:`argparse.ArgumentParser` instance. Let's introduce a third one, :meth:`add_mutually_exclusive_group`. It allows for us to specify options that -conflict with each other. Let's also change the rest of the program make the +conflict with each other. Let's also change the rest of the program to make the new functionality makes more sense: we'll introduce the ``--quiet`` option, which will be the opposite of the ``--verbose`` one:: |