Fix typos/grammar in docs (#2201)

This commit is contained in:
Static 2017-03-06 07:05:59 -06:00 committed by Adrian
parent 06112a555a
commit f5adb61b28
6 changed files with 8 additions and 8 deletions

View file

@ -391,7 +391,7 @@ class Flask(_PackageBoundObject):
#: is the class for the instance check and the second the error handler
#: function.
#:
#: To register a error handler, use the :meth:`errorhandler`
#: To register an error handler, use the :meth:`errorhandler`
#: decorator.
self.error_handler_spec = {None: self._error_handlers}
@ -1354,7 +1354,7 @@ class Flask(_PackageBoundObject):
will have to surround the execution of these code by try/except
statements and log occurring errors.
When a teardown function was called because of a exception it will
When a teardown function was called because of an exception it will
be passed an error object.
The return values of teardown functions are ignored.