From b66a6bddbc49583cd353017c17fcd423aa7828fb Mon Sep 17 00:00:00 2001 From: growingdever Date: Tue, 14 Feb 2017 14:30:07 +0900 Subject: [PATCH] fix typo --- sanic/blueprints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/blueprints.py b/sanic/blueprints.py index c07cc398..237f1b51 100644 --- a/sanic/blueprints.py +++ b/sanic/blueprints.py @@ -86,7 +86,7 @@ class Blueprint: def add_route(self, handler, uri, methods=frozenset({'GET'}), host=None): """ Creates a blueprint route from a function. - :param handler: function or class instance to handle uri request. + :param handler: Function or class instance to handle uri request. :param uri: Endpoint at which the route will be accessible. :param methods: List of acceptable HTTP methods. :return: function or class instance