summaryrefslogtreecommitdiffstats
path: root/Doc/howto
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-05 08:40:01 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2013-04-05 08:40:01 (GMT)
commita5b89c178b953bb69b01945d0061a6ad2a765674 (patch)
tree3e4ad0b903d6a76736785741ee0e762aba989163 /Doc/howto
parent974045523b838eb17e4c7a72bf43eb936a1db89c (diff)
parente463b668e83b71778ac545a15a162d5ec4f15a31 (diff)
downloadcpython-a5b89c178b953bb69b01945d0061a6ad2a765674.zip
cpython-a5b89c178b953bb69b01945d0061a6ad2a765674.tar.gz
cpython-a5b89c178b953bb69b01945d0061a6ad2a765674.tar.bz2
Fix typo
Diffstat (limited to 'Doc/howto')
-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 d6fe4b4..3c479de 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::