[Python-checkins] r79941 - python/trunk/Doc/using/cmdline.rst

andrew.kuchling python-checkins at python.org
Sun Apr 11 03:39:37 CEST 2010


Author: andrew.kuchling
Date: Sun Apr 11 03:39:36 2010
New Revision: 79941

Log:
Two grammar fixes

Modified:
   python/trunk/Doc/using/cmdline.rst

Modified: python/trunk/Doc/using/cmdline.rst
==============================================================================
--- python/trunk/Doc/using/cmdline.rst	(original)
+++ python/trunk/Doc/using/cmdline.rst	Sun Apr 11 03:39:36 2010
@@ -343,7 +343,7 @@
    the remaining fields.  Empty fields match all values; trailing empty fields
    may be omitted.  The *message* field matches the start of the warning message
    printed; this match is case-insensitive.  The *category* field matches the
-   warning category.  This must be a class name; the match test whether the
+   warning category.  This must be a class name; the match tests whether the
    actual warning category of the message is a subclass of the specified warning
    category.  The full class name must be given.  The *module* field matches the
    (fully-qualified) module name; this match is case-sensitive.  The *line*
@@ -554,7 +554,7 @@
 
 .. envvar:: PYTHONWARNINGS
 
-   This is the equivalent to the :option:`-W` option. If set to a comma
+   This is equivalent to the :option:`-W` option. If set to a comma
    separated string, it is equivalent to specifying :option:`-W` multiple
    times.
 


More information about the Python-checkins mailing list