summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2019-12-08 10:49:04 -0500
committerNed Batchelder <ned@nedbatchelder.com>2019-12-08 10:49:04 -0500
commitd5d3cb077e11db37ead90cbf14baf3357c3f9493 (patch)
tree260cbb10a170f87077928449f3388ef1bca822a2
parent8ed8cbec7581d942a8aaafd1341fe20fb33aef96 (diff)
downloadpython-coveragepy-git-d5d3cb077e11db37ead90cbf14baf3357c3f9493.tar.gz
Fix two misspellings
-rw-r--r--CHANGES.rst2
-rw-r--r--coverage/control.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index 3a27c69f..605c1e98 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -168,7 +168,7 @@ Version 5.0a6 --- 2019-07-16
- Changes to the :class:`.CoverageData` interface:
- The new :meth:`.CoverageData.dumps` method serializes the data to a string,
- and a corresponding :meth:`.CoverageData.loads` method reconstitutes ths
+ and a corresponding :meth:`.CoverageData.loads` method reconstitutes this
data. The format of the data string is subject to change at any time, and
so should only be used between two installations of the same version of
coverage.py.
diff --git a/coverage/control.py b/coverage/control.py
index 53942242..28d57535 100644
--- a/coverage/control.py
+++ b/coverage/control.py
@@ -104,7 +104,7 @@ class Coverage(object):
will use values from the config file.
`data_file` is the base name of the data file to use. The config value
- defaults to ".coverage". None can be provied to prevent writing a data
+ defaults to ".coverage". None can be provided to prevent writing a data
file. `data_suffix` is appended (with a dot) to `data_file` to create
the final file name. If `data_suffix` is simply True, then a suffix is
created with the machine and process identity included.