diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-06 15:55:07 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2013-04-06 15:55:07 (GMT) |
commit | e16f4dc80ac71bea48c60d4620740d74975024c9 (patch) | |
tree | cdc205f21fafaa18150556c23e9469f3764c2c6f /Doc/howto/argparse.rst | |
parent | 03b273f4d19efd594a749402d3175bc65c8a250d (diff) | |
download | cpython-e16f4dc80ac71bea48c60d4620740d74975024c9.zip cpython-e16f4dc80ac71bea48c60d4620740d74975024c9.tar.gz cpython-e16f4dc80ac71bea48c60d4620740d74975024c9.tar.bz2 |
Change wording as Eli Bendersky suggests.
Diffstat (limited to 'Doc/howto/argparse.rst')
-rw-r--r-- | Doc/howto/argparse.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index 3c479de..ec67f1e 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -668,8 +668,8 @@ 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 to make the -new functionality makes more sense: +conflict with each other. Let's also change the rest of the program so that +the new functionality makes more sense: we'll introduce the ``--quiet`` option, which will be the opposite of the ``--verbose`` one:: |