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 | 5d725e5e3280387feb24ea6112eea339ed8d3571 (patch) | |
tree | 10395dd5bc751cefa5c68e41a1f9b76b8510dde7 /coverage/data.py | |
parent | da4830f117befaf3a5610aeb1b1e5158ba92d97c (diff) | |
download | python-coveragepy-git-5d725e5e3280387feb24ea6112eea339ed8d3571.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 324d7335..17cf73ce 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. |