summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-11-10 17:00:13 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-11-10 17:00:13 -0500
commit4d471f54c906e5041526b2b8e38cb8721abf4f09 (patch)
tree758085f0ae1de0d54b50bc7221fe4c2e7b7cfcf9
parent8328744f59c531a08f3fe5c406ff22c192aad0f9 (diff)
downloadpython-coveragepy-git-4d471f54c906e5041526b2b8e38cb8721abf4f09.tar.gz
Coverage.py is only capitalized when it starts a sentence
-rw-r--r--CHANGES.rst4
-rw-r--r--tests/coveragetest.py6
2 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index bde42223..a2b54f1e 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -2,7 +2,7 @@
.. For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
==============================
-Change history for Coverage.py
+Change history for coverage.py
==============================
These changes are listed in decreasing version number order. Note this can be
@@ -2394,7 +2394,7 @@ Major overhaul.
- The singleton coverage object is only created if the module-level functions
are used. This maintains the old interface while allowing better
- programmatic use of Coverage.py.
+ programmatic use of coverage.py.
- The minimum supported Python version is 2.3.
diff --git a/tests/coveragetest.py b/tests/coveragetest.py
index 4ffea0e6..85af3623 100644
--- a/tests/coveragetest.py
+++ b/tests/coveragetest.py
@@ -377,7 +377,7 @@ class CoverageTest(
Python interpreter.
* "coverage" is replaced with the command name for the main
- Coverage.py program.
+ coverage.py program.
Returns a pair: the process' exit status and its stdout/stderr text,
which are also stored as `self.last_command_status` and
@@ -408,8 +408,8 @@ class CoverageTest(
# modules.
command_words = "jython -m coverage".split()
else:
- # The invocation requests the Coverage.py program. Substitute the
- # actual Coverage.py main command name.
+ # The invocation requests the coverage.py program. Substitute the
+ # actual coverage.py main command name.
command_words = [self.coverage_command]
else: