]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
docs: Fix a grammar mistake in the user guide 2445/head
authorPetr Zemek <s3rvac@gmail.com>
Sun, 15 Jul 2018 12:45:58 +0000 (14:45 +0200)
committerPetr Zemek <s3rvac@gmail.com>
Sun, 15 Jul 2018 12:45:58 +0000 (14:45 +0200)
"coroutines has" -> "coroutines have"

docs/guide/coroutines.rst

index 963c49fb7a5fe7acd25ce21929f07b32b4c75239..09e0a943dd035b036526d249d83c84c9dce948f3 100644 (file)
@@ -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.