From 9839be8b874a2b04b9a2c7252a2822886689e29d Mon Sep 17 00:00:00 2001 From: Julian Pistorius Date: Tue, 12 Aug 2014 10:08:32 -0700 Subject: [PATCH] Update index.rst Fixed typo: @app.before_reqeust -> @app.before_request --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index 3deba2f..970323e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -558,7 +558,7 @@ Before and After ---------------- Hey, remember that time when you made that big ol' `Flask` app and then -had those ``@app.before_reqeust`` and ``@app.after_request`` +had those ``@app.before_request`` and ``@app.after_request`` decorated methods? Remember how you only wanted some of them to run for certain views so you had all those ``if view == the_one_I_care_about:`` statements and stuff?