From a7b85c9f15cccc0f4bd9560ecf7c11af8d3b7b53 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 29 Jul 2011 09:54:50 -0300 Subject: [PATCH] Consistent quotes --- docs/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index 5eaaf9c5..baca5050 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -18,7 +18,7 @@ A minimal Flask application looks something like this:: @app.route('/') def hello_world(): - return "Hello World!" + return 'Hello World!' if __name__ == '__main__': app.run()