Skip to content

Commit

Permalink
Fix typo in routing.rst
Browse files Browse the repository at this point in the history
This fixes a small typo in the routing docs.
  • Loading branch information
markgras authored Dec 20, 2020
1 parent fc4b7df commit 01d2a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/sanic/routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ which allows the handler function to work with any of the HTTP methods in the li
async def get_handler(request):
return text('GET request - {}'.format(request.args))
There is also an optional `host` argument (which can be a list or a string). This restricts a route to the host or hosts provided. If there is a also a route with no host, it will be the default.
There is also an optional `host` argument (which can be a list or a string). This restricts a route to the host or hosts provided. If there is also a route with no host, it will be the default.

.. code-block:: python
Expand Down

0 comments on commit 01d2a2a

Please sign in to comment.