summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-05 11:39:50 +0300
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-05 11:39:50 +0300
commite463b668e83b71778ac545a15a162d5ec4f15a31 (patch)
tree6591f4c8056229b0cb53db0f008b2e0790245569
parent815b0e23bf665412340e5383c2da95b8efb528d7 (diff)
downloadcpython-git-e463b668e83b71778ac545a15a162d5ec4f15a31.tar.gz
Fix typo
-rw-r--r--Doc/howto/argparse.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst
index d6fe4b44dd..3c479dedfe 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::