Skip to content

Commit

Permalink
Merge pull request #1984 from markgras/patch-1
Browse files Browse the repository at this point in the history
Fix typo in routing.rst
  • Loading branch information
ahopkins authored Dec 25, 2020
2 parents ac1331e + 3833744 commit 262f89f
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 262f89f

Please sign in to comment.