Simple documentation corrections, mostly typos.

This commit is contained in:
Craig Dennis 2011-11-20 17:03:37 +01:00 committed by Armin Ronacher
parent 8ae6ced82d
commit 75050d4bc5
3 changed files with 3 additions and 3 deletions

View file

@ -616,7 +616,7 @@ Storing cookies::
resp.set_cookie('username', 'the username')
return resp
Note that cookies are set on response objects. Since you normally you
Note that cookies are set on response objects. Since you normally
just return strings from the view functions Flask will convert them into
response objects for you. If you explicitly want to do that you can use
the :meth:`~flask.make_response` function and then modify it.