From c06fbc656d1bdab58700e138267aa3d14c1a054f Mon Sep 17 00:00:00 2001 From: Asoul Yang Date: Mon, 20 Mar 2017 11:30:44 +0800 Subject: [PATCH] Is this typo? I found the `add_route` without prefix slash, is this typo or just another meanings? Can I found some document? Thanks :) --- tutorial/8_html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/8_html.md b/tutorial/8_html.md index 2862d6c..976c8c4 100644 --- a/tutorial/8_html.md +++ b/tutorial/8_html.md @@ -34,7 +34,7 @@ app = Application() # Add routes to the app app.router.add_route('/', index) app.router.add_route('/example', example) -app.router.add_route('jinja2', jinja) +app.router.add_route('/jinja2', jinja) # Start the server app.run(debug=True)