summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-future.rst
diff options
context:
space:
mode:
authorYury Selivanov <yury@magic.io>2018-09-18 17:55:44 -0400
committerGitHub <noreply@github.com>2018-09-18 17:55:44 -0400
commit471503954a91d86cf04228c38134108c67a263b0 (patch)
tree25ccace31572e066077eb9a2b343b986e252f4e1 /Doc/library/asyncio-future.rst
parenta3c88ef12c7b8993912750b56a1e095652fe47c0 (diff)
downloadcpython-git-471503954a91d86cf04228c38134108c67a263b0.tar.gz
bpo-33649: Add a high-level section about Futures; few quick fixes (GH-9403)
Co-authored-by: Elvis Pranskevichus <elvis@magic.io>
Diffstat (limited to 'Doc/library/asyncio-future.rst')
-rw-r--r--Doc/library/asyncio-future.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-future.rst b/Doc/library/asyncio-future.rst
index d6c5335c0e..6e6e0137c1 100644
--- a/Doc/library/asyncio-future.rst
+++ b/Doc/library/asyncio-future.rst
@@ -7,7 +7,7 @@
Futures
=======
-*Future* objects are used to bridge low-level callback-based code
+*Future* objects are used to bridge **low-level callback-based code**
with high-level async/await code.