diff options
-rw-r--r-- | CHANGES.rst | 2 | ||||
-rw-r--r-- | coverage/control.py | 2 |
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. |