From 650c3f4e45602d0faa4376291ae1b51f92bd90be Mon Sep 17 00:00:00 2001 From: Max Dietrich Date: Sun, 19 Apr 2015 02:09:53 +0200 Subject: [PATCH] Fixed grammar in comments for easier understanding --- thefuck/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thefuck/main.py b/thefuck/main.py index ae319199..adb0084d 100644 --- a/thefuck/main.py +++ b/thefuck/main.py @@ -13,7 +13,7 @@ Rule = namedtuple('Rule', ('match', 'get_new_command')) def setup_user_dir(): - """Returns user config dir, create it when it doesn't exists.""" + """Returns user config dir, create it when it doesn't exist.""" user_dir = Path(expanduser('~/.thefuck')) rules_dir = user_dir.joinpath('rules') if not rules_dir.is_dir(): @@ -98,7 +98,7 @@ def run_rule(rule, command, settings): def is_second_run(command): - """It's second run of `fuck`?""" + """Is it the second run of `fuck`?""" return command.script.startswith('fuck')