From 0e4cd2e6512c66ba004df0f35f3a21e8cfcdf77c Mon Sep 17 00:00:00 2001 From: Kanak Kshetri Date: Thu, 31 Mar 2011 15:53:17 -0400 Subject: [PATCH] Fixed a typo that was preventing second code block from appearing in a code block Signed-off-by: Armin Ronacher --- docs/tutorial/dbcon.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/dbcon.rst b/docs/tutorial/dbcon.rst index f700a329..b2a626f9 100644 --- a/docs/tutorial/dbcon.rst +++ b/docs/tutorial/dbcon.rst @@ -24,7 +24,7 @@ db connection in the interactive debugger:: return response If you want to guarantee that the connection is always closed in debug mode, you -can close it in a function decorated with :meth:`~flask.Flask.teardown_request`: +can close it in a function decorated with :meth:`~flask.Flask.teardown_request`:: @app.before_request def before_request():