Fix some typos in the docstrings

This commit is contained in:
jgraeme 2010-08-03 00:18:19 +08:00 committed by Armin Ronacher
parent ff2786d8af
commit 549af62290
4 changed files with 8 additions and 8 deletions

View file

@ -17,7 +17,7 @@ from .globals import _request_ctx_stack
class Request(RequestBase):
"""The request object used by default in flask. Remembers the
"""The request object used by default in Flask. Remembers the
matched endpoint and view arguments.
It is what ends up as :class:`~flask.request`. If you want to replace
@ -77,8 +77,8 @@ class Request(RequestBase):
class Response(ResponseBase):
"""The response object that is used by default in flask. Works like the
response object from Werkzeug but is set to have a HTML mimetype by
"""The response object that is used by default in Flask. Works like the
response object from Werkzeug but is set to have an HTML mimetype by
default. Quite often you don't have to create this object yourself because
:meth:`~flask.Flask.make_response` will take care of that for you.