From 596bb54ee37da58bb2fad34db1a912bd7cfe7ff0 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Thu, 19 Jan 2017 21:26:37 -0600 Subject: [PATCH] Oops on 2 of the non-relative links --- docs/custom_protocol.md | 2 +- docs/deploying.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/custom_protocol.md b/docs/custom_protocol.md index 67b732a2..73d1f1d3 100644 --- a/docs/custom_protocol.md +++ b/docs/custom_protocol.md @@ -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 diff --git a/docs/deploying.md b/docs/deploying.md index 88aedfe8..f4d63163 100644 --- a/docs/deploying.md +++ b/docs/deploying.md @@ -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