From 8e80df384d8175918809e899cc794569b6d5a91a Mon Sep 17 00:00:00 2001 From: Yao Date: Wed, 25 Jul 2018 22:55:06 +0800 Subject: [PATCH] docs: Fix python syntax error in the user guide --- docs/guide/coroutines.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/coroutines.rst b/docs/guide/coroutines.rst index 09e0a943d..eb500da12 100644 --- a/docs/guide/coroutines.rst +++ b/docs/guide/coroutines.rst @@ -210,7 +210,7 @@ In decorated coroutines, it is possible to ``yield`` the list or dict directly:: @gen.coroutine def parallel_fetch_decorated(url1, url2): resp1, resp2 = yield [http_client.fetch(url1), - http_client.fetch(url2)]) + http_client.fetch(url2)] Interleaving ^^^^^^^^^^^^ -- 2.47.2