From 7991bcbf1aada4131d06c85a1c8317c3ec88cf74 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 14 Oct 2018 06:59:26 -0400 Subject: [PATCH] note --- docs/source/quickstart.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)