summaryrefslogtreecommitdiffstats
path: root/Doc/howto/argparse.rst
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-06 15:54:19 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-06 15:54:19 (GMT)
commit9c6eb266f5c275a4836f32720f37451c4f14c50d (patch)
tree5ef1d42e1472776e7196c6ba02bb4935584171a0 /Doc/howto/argparse.rst
parent5419e493afdc591b2bbbb5040a356115c5108da1 (diff)
downloadcpython-9c6eb266f5c275a4836f32720f37451c4f14c50d.zip
cpython-9c6eb266f5c275a4836f32720f37451c4f14c50d.tar.gz
cpython-9c6eb266f5c275a4836f32720f37451c4f14c50d.tar.bz2
Change wording as Eli Bendersky suggests.
Diffstat (limited to 'Doc/howto/argparse.rst')
-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 3d49d35..4f64948 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::