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)