From 7e2b590da1d17a3e5e3d49d28c6c55c752fd71d6 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 22 Apr 2014 08:45:56 +0200 Subject: [PATCH] Spelling fix --- qutebrowser/browser/hints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qutebrowser/browser/hints.py b/qutebrowser/browser/hints.py index 9a33fae15..e8be92346 100644 --- a/qutebrowser/browser/hints.py +++ b/qutebrowser/browser/hints.py @@ -118,7 +118,7 @@ class HintManager(QObject): "[role=option], [role=button], img"), "links": "a", "images": "img", - # FIXME remove input:not([type=hidden]) and add mor explicit inputs. + # FIXME remove input:not([type=hidden]) and add more explicit inputs. "editable": ("input:not([type=hidden]), input[type=text], " "input[type=password], input[type=search], textarea"), "url": "[src], [href]", @@ -158,7 +158,7 @@ class HintManager(QObject): def _hint_strings(self, elems): """Calculate the hint strings for elems. - Inspirated by Vimium. + Inspired by Vimium. Args: elems: The elements to get hint strings for.