diff options
author | Fredrik Averpil <fredrik@averpil.com> | 2019-04-20 23:06:38 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-04-20 23:06:38 (GMT) |
commit | 3e986de0d65e78901b55d4e500b1d05c847b6d5e (patch) | |
tree | 6d23047c54b9ab3009b11c30c125f7919ffe6ea6 /Doc/library/asyncio-sync.rst | |
parent | 14adbd45980f705cb6554ca17b8a66b56e105296 (diff) | |
download | cpython-3e986de0d65e78901b55d4e500b1d05c847b6d5e.zip cpython-3e986de0d65e78901b55d4e500b1d05c847b6d5e.tar.gz cpython-3e986de0d65e78901b55d4e500b1d05c847b6d5e.tar.bz2 |
Fix typo (GH-12878)
"sychronization" -> "synchronization"
Diffstat (limited to 'Doc/library/asyncio-sync.rst')
-rw-r--r-- | Doc/library/asyncio-sync.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/asyncio-sync.rst b/Doc/library/asyncio-sync.rst index 18da188..e3f18cc 100644 --- a/Doc/library/asyncio-sync.rst +++ b/Doc/library/asyncio-sync.rst @@ -17,7 +17,7 @@ those of the :mod:`threading` module with two important caveats: argument; use the :func:`asyncio.wait_for` function to perform operations with timeouts. -asyncio has the following basic sychronization primitives: +asyncio has the following basic synchronization primitives: * :class:`Lock` * :class:`Event` |