From dd32d817267707c8c95e1919a111c9d5de9b4d5d Mon Sep 17 00:00:00 2001 From: cakemanny Date: Thu, 28 Mar 2019 01:05:39 +0000 Subject: [PATCH] fix typos in docs --- docs/sanic/asyncio_python37.rst | 2 +- docs/sanic/examples.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sanic/asyncio_python37.rst b/docs/sanic/asyncio_python37.rst index 5bdb9e45..2fa71f2b 100644 --- a/docs/sanic/asyncio_python37.rst +++ b/docs/sanic/asyncio_python37.rst @@ -4,7 +4,7 @@ Python 3.7 AsyncIO examples With Python 3.7 AsyncIO got major update for the following types: - asyncio.AbstractEventLoop - - asyncio.AnstractServer + - asyncio.AbstractServer This example shows how to use sanic with Python 3.7, to be precise: how to retrieve an asyncio server instance: diff --git a/docs/sanic/examples.rst b/docs/sanic/examples.rst index e2a7af14..a0760f38 100644 --- a/docs/sanic/examples.rst +++ b/docs/sanic/examples.rst @@ -160,7 +160,7 @@ execution support provided by the ``pytest-xdist`` plugin. Amending Request Object ~~~~~~~~~~~~~~~~~~~~~~~ -The ``request`` object in ``Sanic`` is a kind of ``dict`` object, this means that ``reqeust`` object can be manipulated as a regular ``dict`` object. +The ``request`` object in ``Sanic`` is a kind of ``dict`` object, this means that ``request`` object can be manipulated as a regular ``dict`` object. .. literalinclude:: ../../examples/amending_request_object.py