From 47df2e7ec6d6740fc882bfa2ccb02aae82502724 Mon Sep 17 00:00:00 2001 From: Jethro Cao Date: Wed, 25 Dec 2019 01:51:03 +0700 Subject: Use (slightly) clearer wording --- qutebrowser/commands/cmdexc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qutebrowser/commands/cmdexc.py b/qutebrowser/commands/cmdexc.py index 5eb465a24..8398950a9 100644 --- a/qutebrowser/commands/cmdexc.py +++ b/qutebrowser/commands/cmdexc.py @@ -30,12 +30,12 @@ class Error(Exception): class NoSuchCommandError(Error): - """Raised when a command wasn't found.""" + """Raised when a command isn't found.""" class ArgumentTypeError(Error): - """Raised when an argument had an invalid type.""" + """Raised when an argument is an invalid type.""" class PrerequisitesError(Error): @@ -43,5 +43,5 @@ class PrerequisitesError(Error): """Raised when a cmd can't be used because some prerequisites aren't met. This is raised for example when we're in the wrong mode while executing the - command, or we need javascript enabled but don't have done so. + command, or we need javascript enabled but haven't done so. """ -- cgit v1.2.3-54-g00ecf