From: Petr Zemek Date: Sun, 15 Jul 2018 12:45:58 +0000 (+0200) Subject: docs: Fix a grammar mistake in the user guide X-Git-Tag: v6.0.0b1~45^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ffa1aaec559d1303b05a594a41d5abaa1a378da;p=thirdparty%2Ftornado.git docs: Fix a grammar mistake in the user guide "coroutines has" -> "coroutines have" --- diff --git a/docs/guide/coroutines.rst b/docs/guide/coroutines.rst index 963c49fb7..09e0a943d 100644 --- a/docs/guide/coroutines.rst +++ b/docs/guide/coroutines.rst @@ -68,7 +68,7 @@ Other differences between the two forms of coroutine are: background" as soon as they are called. Note that for both kinds of coroutines it is important to use ``await`` or ``yield`` so that any exceptions have somewhere to go. -- Decorated coroutines has additional integration with the +- Decorated coroutines have additional integration with the `concurrent.futures` package, allowing the result of ``executor.submit`` to be yielded directly. For native coroutines, use `.IOLoop.run_in_executor` instead.