From 01d2a2aa3c1da2b17266faad79ef6a8db1517487 Mon Sep 17 00:00:00 2001 From: Mark Grassi <17365607+markgras@users.noreply.github.com> Date: Sun, 20 Dec 2020 16:08:51 -0500 Subject: [PATCH] Fix typo in routing.rst This fixes a small typo in the routing docs. --- docs/sanic/routing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sanic/routing.rst b/docs/sanic/routing.rst index 391a5225..9b110d68 100644 --- a/docs/sanic/routing.rst +++ b/docs/sanic/routing.rst @@ -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