summaryrefslogtreecommitdiff
path: root/qutebrowser/utils/utils.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-11-20 13:42:32 +0100
committerFlorian Bruhin <me@the-compiler.org>2020-11-20 13:42:32 +0100
commit6e23cdcade42e75450cb2142703182cff4a7da0c (patch)
tree172ae90e3a9f0125b45dc2e8a8cf1bba5448d4af /qutebrowser/utils/utils.py
parent93091c1f988024bcb24fb6a8f347de484c275670 (diff)
downloadqutebrowser-6e23cdcade42e75450cb2142703182cff4a7da0c.tar.gz
qutebrowser-6e23cdcade42e75450cb2142703182cff4a7da0c.zip
Fix docstring
Diffstat (limited to 'qutebrowser/utils/utils.py')
-rw-r--r--qutebrowser/utils/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qutebrowser/utils/utils.py b/qutebrowser/utils/utils.py
index db6671fd3..31ff5bf50 100644
--- a/qutebrowser/utils/utils.py
+++ b/qutebrowser/utils/utils.py
@@ -79,7 +79,7 @@ except ImportError: # pragma: no cover
class SupportsLessThan(Protocol):
- """Protocol for the _T TypeVar below."""
+ """Protocol for a "comparable" object."""
def __lt__(self, other: Any) -> bool:
...