Oops on 2 of the non-relative links

This commit is contained in:
Eli Uriegas 2017-01-19 21:26:37 -06:00
parent 7554e87374
commit 596bb54ee3
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
You can change the behavior of Sanic's protocol by specifying a custom
protocol, which should be a subclass
of
[asyncio.protocol](https://docs.python.org/3/library/asyncio-protocol.md#protocol-classes).
[asyncio.protocol](https://docs.python.org/3/library/asyncio-protocol.html#protocol-classes).
This protocol can then be passed as the keyword argument `protocol` to the `sanic.run` method.
The constructor of the custom protocol class receives the following keyword

View File

@ -23,7 +23,7 @@ keyword arguments:
specified, Sanic creates its own event loop.
- `protocol` *(default `HttpProtocol`)*: Subclass
of
[asyncio.protocol](https://docs.python.org/3/library/asyncio-protocol.md#protocol-classes).
[asyncio.protocol](https://docs.python.org/3/library/asyncio-protocol.html#protocol-classes).
## Workers