fix the comments on style/typos

This commit is contained in:
Felix Van der Jeugt 2015-11-03 23:15:07 +01:00
parent 84c498b638
commit 896ac0a7e9

View File

@ -45,10 +45,10 @@ from qutebrowser.config import configexc, configdata
pyeval_output = ":pyeval was never called" pyeval_output = ":pyeval was never called"
HANDLERS = dict() HANDLERS = {}
def addHandler(name): def add_handler(name):
"""Add a handler to the qute: sheme.""" """Add a handler to the qute: scheme."""
def namedecorator(function): def namedecorator(function):
HANDLERS[name] = function HANDLERS[name] = function
return namedecorator return namedecorator