From: Andrew Svetlov Date: Fri, 5 Apr 2013 08:39:36 +0000 (+0300) Subject: Fix typo X-Git-Tag: v2.7.5~108 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c8986682ecb09d2ff8be991f570852d7ed068464;p=thirdparty%2FPython%2Fcpython.git Fix typo --- diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index c0b3f94da0e1..3d49d359292c 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::