From 693e4449f87950c764a928690f4437fd6b1b4d7d Mon Sep 17 00:00:00 2001 From: Zhao Xiaohong Date: Thu, 13 May 2010 15:22:03 +0800 Subject: [PATCH] Fix typo. --- flask.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flask.py b/flask.py index 6f8a21fc..084b6593 100644 --- a/flask.py +++ b/flask.py @@ -562,7 +562,7 @@ class Module(_PackageBoundObject): return f def context_processor(self, f): - """Like :meth:`Flask.context_processor` but for a modul. This + """Like :meth:`Flask.context_processor` but for a module. This function is only executed for requests handled by a module. """ self._record(lambda s: s.app.template_context_processors @@ -601,7 +601,7 @@ class Flask(_PackageBoundObject): app = Flask(__name__) """ - #: the class that is used for request objects. See :class:`~flask.request` + #: the class that is used for request objects. See :class:`~flask.Request` #: for more information. request_class = Request