Merge pull request #271 from dafire/master

small error in tutorial
This commit is contained in:
Armin Ronacher 2011-07-07 04:21:39 -07:00
commit 20371b8657

View file

@ -22,7 +22,7 @@ decorators::
Functions marked with :meth:`~flask.Flask.before_request` are called before
a request and passed no arguments. Functions marked with
:meth:`~flask.Flask.teardown_request` are called after a request and
:meth:`~flask.Flask.after_request` are called after a request and
passed the response that will be sent to the client. They have to return
that response object or a different one. They are however not guaranteed
to be executed if an exception is raised, this is where functions marked with