summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2010-04-11 01:39:36 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2010-04-11 01:39:36 (GMT)
commitfced90835c97240f8f0256e8add74bacdc6fa0a5 (patch)
tree0b75d105c3590bb19768b33993c5c0435d593dde
parente694e00ee18d01e1285c7adf407bf65d261540e6 (diff)
downloadcpython-fced90835c97240f8f0256e8add74bacdc6fa0a5.zip
cpython-fced90835c97240f8f0256e8add74bacdc6fa0a5.tar.gz
cpython-fced90835c97240f8f0256e8add74bacdc6fa0a5.tar.bz2
Two grammar fixes
-rw-r--r--Doc/using/cmdline.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
index afb8e65..a444228 100644
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -343,7 +343,7 @@ Miscellaneous options
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 @@ These environment variables influence Python's behavior.
.. 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.