diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-14 06:14:40 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-10-14 06:14:40 -0400 |
commit | 9f269ac30b46038ee1fec1c89fb5b5fef5ce6678 (patch) | |
tree | 10f9e18af9d7eb12073d3ca3e4a8e6496924df70 /coverage/data.py | |
parent | 460afcbee1bd92440036118cb27e31a07521a2da (diff) | |
download | python-coveragepy-9f269ac30b46038ee1fec1c89fb5b5fef5ce6678.tar.gz |
Make doc checking better, and fix two doc errors.
Diffstat (limited to 'coverage/data.py')
-rw-r--r-- | coverage/data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/data.py b/coverage/data.py index 324d733..17cf73c 100644 --- a/coverage/data.py +++ b/coverage/data.py @@ -576,7 +576,7 @@ class CoverageData(object): def add_to_hash(self, filename, hasher): """Contribute `filename`'s data to the `hasher`. - `hasher` is a :class:`coverage.misc.Hasher` instance to be updated with + `hasher` is a `coverage.misc.Hasher` instance to be updated with the file's data. It should only get the results data, not the run data. |