diff options
author | Galden <wudenggang0@163.com> | 2020-04-14 00:04:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-14 00:04:32 (GMT) |
commit | 02152b7332593a00ccf0eb77faf066ba97ca8687 (patch) | |
tree | 8fd479dc4052221d0f796f290a0e934f02ae2f31 /Lib/asyncio/events.py | |
parent | 990ea4200f05fcd8bce3de363f4d7745ae142385 (diff) | |
download | cpython-02152b7332593a00ccf0eb77faf066ba97ca8687.zip cpython-02152b7332593a00ccf0eb77faf066ba97ca8687.tar.gz cpython-02152b7332593a00ccf0eb77faf066ba97ca8687.tar.bz2 |
Fix typo from Lib/asyncio/events.py (GH-19410)
Diffstat (limited to 'Lib/asyncio/events.py')
-rw-r--r-- | Lib/asyncio/events.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/events.py b/Lib/asyncio/events.py index c7343f5..16a6cfd 100644 --- a/Lib/asyncio/events.py +++ b/Lib/asyncio/events.py @@ -397,7 +397,7 @@ class AbstractEventLoop: The return value is a Server object, which can be used to stop the service. - path is a str, representing a file systsem path to bind the + path is a str, representing a file system path to bind the server socket to. sock can optionally be specified in order to use a preexisting |