From f0c019d782e7451a823b20dc7032c037f814e8d6 Mon Sep 17 00:00:00 2001 From: Jordan Suchow Date: Sun, 10 Apr 2016 22:08:30 -0700 Subject: [PATCH] Fix typo in docstring --- proselint/tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proselint/tools.py b/proselint/tools.py index 9981bc4b5..e97270d45 100644 --- a/proselint/tools.py +++ b/proselint/tools.py @@ -40,7 +40,7 @@ def close_cache_shelves(): def close_cache_shelves_after(f): - """Decorator that insures cache shelves are closed after the call.""" + """Decorator that ensures cache shelves are closed after the call.""" @functools.wraps(f) def wrapped(*args, **kwargs): f(*args, **kwargs)