Spelling fix

This commit is contained in:
Florian Bruhin 2014-04-22 08:45:56 +02:00
parent 21abfa10a4
commit 7e2b590da1

View File

@ -118,7 +118,7 @@ class HintManager(QObject):
"[role=option], [role=button], img"), "[role=option], [role=button], img"),
"links": "a", "links": "a",
"images": "img", "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], " "editable": ("input:not([type=hidden]), input[type=text], "
"input[type=password], input[type=search], textarea"), "input[type=password], input[type=search], textarea"),
"url": "[src], [href]", "url": "[src], [href]",
@ -158,7 +158,7 @@ class HintManager(QObject):
def _hint_strings(self, elems): def _hint_strings(self, elems):
"""Calculate the hint strings for elems. """Calculate the hint strings for elems.
Inspirated by Vimium. Inspired by Vimium.
Args: Args:
elems: The elements to get hint strings for. elems: The elements to get hint strings for.