Fixed spelling of 'receive' in a bunch of places

This commit is contained in:
Simon Willison 2021-08-03 09:11:18 -07:00
commit a679d0de87
4 changed files with 7 additions and 7 deletions

View file

@ -149,7 +149,7 @@ Create a ``Response`` object and then use ``await response.asgi_send(send)``, pa
.. code-block:: python
async def require_authorization(scope, recieve, send):
async def require_authorization(scope, receive, send):
response = Response.text(
"401 Authorization Required",
headers={