fix typos in docs

This commit is contained in:
cakemanny 2019-03-28 01:05:39 +00:00
parent 566940e052
commit dd32d81726
2 changed files with 2 additions and 2 deletions

View File

@ -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:

View File

@ -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