Fix typo in quickstart example

This commit is contained in:
Manish P Mathai
2018-10-16 22:36:54 -07:00
committed by GitHub
parent 2d935542e1
commit 148a430da4
+1 -1
View File
@@ -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)