summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJethro Cao <jethrocao@gmail.com>2019-12-25 01:51:03 +0700
committerJethro Cao <jethrocao@gmail.com>2019-12-25 01:53:27 +0700
commit47df2e7ec6d6740fc882bfa2ccb02aae82502724 (patch)
treee24bcbdbb8c894cb9855595bae0e00161f3426b3
parent86fca3e99ee4836f5f591831eb93a09ffb8231d2 (diff)
downloadqutebrowser-47df2e7ec6d6740fc882bfa2ccb02aae82502724.tar.gz
qutebrowser-47df2e7ec6d6740fc882bfa2ccb02aae82502724.zip
Use (slightly) clearer wording
-rw-r--r--qutebrowser/commands/cmdexc.py6
1 files 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.
"""