summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-06 15:55:31 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-06 15:55:31 (GMT)
commitc53fd51278fe37a8d57968267452bf06d8db609c (patch)
tree43b5af2b6d42fddc2d3bda97705ccaed85fd45b9 /Doc/howto
parenta4f988c2bde9c060b05758ef7c451e34c9b8caab (diff)
parente16f4dc80ac71bea48c60d4620740d74975024c9 (diff)
downloadcpython-c53fd51278fe37a8d57968267452bf06d8db609c.zip
cpython-c53fd51278fe37a8d57968267452bf06d8db609c.tar.gz
cpython-c53fd51278fe37a8d57968267452bf06d8db609c.tar.bz2
Change wording as Eli Bendersky suggests.
Diffstat (limited to 'Doc/howto')
-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 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::