summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-12-28 18:31:17 +0100
committerGitHub <noreply@github.com>2019-12-28 18:31:17 +0100
commit51afda88cb0c4d83092316ce59512afe5ea76f42 (patch)
tree005cb7d22e186877ef9d698ba5c3f4f792e8d8de
parent7db5867ce1b77855f4f9a0f898734e5361b38181 (diff)
parent47df2e7ec6d6740fc882bfa2ccb02aae82502724 (diff)
downloadqutebrowser-51afda88cb0c4d83092316ce59512afe5ea76f42.tar.gz
qutebrowser-51afda88cb0c4d83092316ce59512afe5ea76f42.zip
Merge pull request #5162 from jyscao/doc_strings
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.
"""