From: Yao Date: Wed, 25 Jul 2018 14:55:06 +0000 (+0800) Subject: docs: Fix python syntax error in the user guide X-Git-Tag: v6.0.0b1~41^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F2459%2Fhead;p=thirdparty%2Ftornado.git docs: Fix python syntax error in the user guide --- 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 ^^^^^^^^^^^^