summaryrefslogtreecommitdiff
path: root/doc/cmd.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2015-08-20 13:44:11 -0400
committerNed Batchelder <ned@nedbatchelder.com>2015-08-20 13:44:11 -0400
commit8e5e579f8b9b70345ff8b2ed6650040b73cc7574 (patch)
treee57aa138b3e0b6a8817bf592d737c40be88865ca /doc/cmd.rst
parent4a2c55378422df624c9928327a493c7b2b9c7400 (diff)
downloadpython-coveragepy-8e5e579f8b9b70345ff8b2ed6650040b73cc7574.tar.gz
Fix 'filename' to be 'file name' in English.
Diffstat (limited to 'doc/cmd.rst')
-rw-r--r--doc/cmd.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/cmd.rst b/doc/cmd.rst
index 83acb88..1070dc0 100644
--- a/doc/cmd.rst
+++ b/doc/cmd.rst
@@ -82,7 +82,7 @@ command::
Your program runs just as if it had been invoked with the Python command line.
Arguments after your file name are passed to your program as usual in
-``sys.argv``. Rather than providing a filename, you can use the ``-m`` switch
+``sys.argv``. Rather than providing a file name, you can use the ``-m`` switch
and specify an importable module name instead, just as you can with the
Python ``-m`` switch::
@@ -232,9 +232,9 @@ Coverage.py provides a few styles of reporting, with the **report**, **html**,
The command-line arguments are module or file names to report on, if you'd like
to report on a subset of the data collected.
-The ``--include`` and ``--omit`` flags specify lists of filename patterns. They
-control which files to report on, and are described in more detail
-in :ref:`source`.
+The ``--include`` and ``--omit`` flags specify lists of file name patterns.
+They control which files to report on, and are described in more detail in
+:ref:`source`.
The ``-i`` or ``--ignore-errors`` switch tells coverage.py to ignore problems
encountered trying to find source files to report on. This can be useful if