Merge pull request #1542 from cakemanny/some-typo-fixes

Fix some typos in docs
This commit is contained in:
Eli Uriegas 2019-03-27 21:24:33 -07:00 committed by GitHub
commit d0c8808340
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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: With Python 3.7 AsyncIO got major update for the following types:
- asyncio.AbstractEventLoop - 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: 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 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 .. literalinclude:: ../../examples/amending_request_object.py