summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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.
"""