Fix typo in routing.md

This commit is contained in:
Tommy Ip 2017-02-19 12:39:39 +00:00 committed by GitHub
parent 2921e9f868
commit 4b7e7aab33

View File

@ -64,9 +64,9 @@ async def folder_handler(request, folder_id):
## HTTP request types
By default, a route defined on a URL will be avaialble for only GET requests to that URL.
By default, a route defined on a URL will be available for only GET requests to that URL.
However, the `@app.route` decorator accepts an optional parameter, `methods`,
whicl allows the handler function to work with any of the HTTP methods in the list.
which allows the handler function to work with any of the HTTP methods in the list.
```python
from sanic.response import text