diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst index 61b7943..4ba1532 100644 --- a/docs/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -82,7 +82,8 @@ Here, we'll process our data in the background, while responding immediately to # Parse the incoming data as form-encoded. - data = await resp.media('form') # 'json' and 'yaml' formats are also supported. + # Note: 'json' and 'yaml' formats are also supported. + data = await resp.media('form') # Process the data (in the background). process_data(data)