From 148a430da45aab30d9dae87fd0154a80fbe7c863 Mon Sep 17 00:00:00 2001 From: Manish P Mathai Date: Tue, 16 Oct 2018 22:36:54 -0700 Subject: [PATCH] Fix typo in quickstart example --- docs/source/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst index 904afaf..fc12ab7 100644 --- a/docs/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -115,7 +115,7 @@ Here, we'll process our data in the background, while responding immediately to # Parse the incoming data as form-encoded. # Note: 'json' and 'yaml' formats are also automatically supported. - data = await resp.media() + data = await req.media() # Process the data (in the background). process_data(data)