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))