summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-06 18:55:07 +0300
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-06 18:55:07 +0300
commit320e9929989fd447b3872982ac0ca1344eb0849c (patch)
tree067a5474a523d0ed40fc1657f4adcb9249cc024c
parent9d81954c0f17905a992e8dc4134b3052467c2afa (diff)
downloadcpython-320e9929989fd447b3872982ac0ca1344eb0849c.tar.gz
Change wording as Eli Bendersky suggests.
-rw-r--r--Doc/howto/argparse.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst
index 3c479dedfe..ec67f1e1f5 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::