From: Andrew Svetlov Date: Sat, 6 Apr 2013 15:54:19 +0000 (+0300) Subject: Change wording as Eli Bendersky suggests. X-Git-Tag: v2.7.5~102^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9c6eb266f5c275a4836f32720f37451c4f14c50d;p=thirdparty%2FPython%2Fcpython.git Change wording as Eli Bendersky suggests. --- diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index 3d49d359292c..4f64948c9d2a 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::