diff options
Diffstat (limited to 'coverage/misc.py')
-rw-r--r-- | coverage/misc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/misc.py b/coverage/misc.py index 97d1f72..50396d6 100644 --- a/coverage/misc.py +++ b/coverage/misc.py @@ -91,7 +91,7 @@ def expensive(fn): attr = "_cache_" + fn.__name__ def _wrapped(self): - """Inner fn that checks the cache.""" + """Inner function that checks the cache.""" if not hasattr(self, attr): setattr(self, attr, fn(self)) return getattr(self, attr) |