From 77992029b6832992a8b2137e1489edd9705aeaa1 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 17 Dec 2019 08:10:45 +1100 Subject: [PATCH] Fix simple typo: controle -> control (#1017) --- thefuck/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thefuck/utils.py b/thefuck/utils.py index 6112c019..8d55f372 100644 --- a/thefuck/utils.py +++ b/thefuck/utils.py @@ -98,7 +98,7 @@ def get_closest(word, possibilities, cutoff=0.6, fallback_to_first=True): def get_close_matches(word, possibilities, n=None, cutoff=0.6): - """Overrides `difflib.get_close_match` to controle argument `n`.""" + """Overrides `difflib.get_close_match` to control argument `n`.""" if n is None: n = settings.num_close_matches return difflib_get_close_matches(word, possibilities, n, cutoff)