From e65f08a2c8e072e46130196731b781bde961cf1c Mon Sep 17 00:00:00 2001 From: 38elements Date: Sun, 30 Apr 2017 18:59:36 +0900 Subject: [PATCH] Fix docs/sanic/routing.md --- docs/sanic/routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanic/routing.md b/docs/sanic/routing.md index 0434af94..9b4d060f 100644 --- a/docs/sanic/routing.md +++ b/docs/sanic/routing.md @@ -52,7 +52,7 @@ async def integer_handler(request, integer_arg): async def number_handler(request, number_arg): return text('Number - {}'.format(number_arg)) -@app.route('/person/') +@app.route('/person/') async def person_handler(request, name): return text('Person - {}'.format(name))