Browse Source

fix grammar in preprocess_request() docstring

pull/1338/head
Chris Rebert 10 years ago
parent
commit
a45fce8496
  1. 5
      flask/app.py

5
flask/app.py

@ -1710,8 +1710,9 @@ class Flask(_PackageBoundObject):
def preprocess_request(self):
"""Called before the actual request dispatching and will
call every as :meth:`before_request` decorated function.
If any of these function returns a value it's handled as
call each :meth:`before_request` decorated function, passing no
arguments.
If any of these functions returns a value, it's handled as
if it was the return value from the view and further
request handling is stopped.

Loading…
Cancel
Save