From 13fda64d6e008e336b3a05a0e903242d01284176 Mon Sep 17 00:00:00 2001 From: "M. H. Kwon" Date: Tue, 6 Jul 2021 23:58:44 +0900 Subject: [PATCH] #1109: Fix a typo on a comment on -> one --- thefuck/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thefuck/utils.py b/thefuck/utils.py index 38d8c112..3a632a5a 100644 --- a/thefuck/utils.py +++ b/thefuck/utils.py @@ -186,7 +186,7 @@ def is_app(command, *app_names, **kwargs): def for_app(*app_names, **kwargs): - """Specifies that matching script is for on of app names.""" + """Specifies that matching script is for one of app names.""" def _for_app(fn, command): if is_app(command, *app_names, **kwargs): return fn(command)