diff options
author | Sam Dunster <me@sdunster.com> | 2018-03-28 00:47:38 (GMT) |
---|---|---|
committer | Ćukasz Langa <lukasz@langa.pl> | 2018-03-28 00:47:38 (GMT) |
commit | 65a34709f60711f7c46031d4c6c420f567bc790a (patch) | |
tree | 31c3e06c95384a93fff89e9f56cccbb3a6120c73 /Lib/asyncio | |
parent | 8534d53333e4e918be82b041754ecd89af519e5b (diff) | |
download | cpython-65a34709f60711f7c46031d4c6c420f567bc790a.zip cpython-65a34709f60711f7c46031d4c6c420f567bc790a.tar.gz cpython-65a34709f60711f7c46031d4c6c420f567bc790a.tar.bz2 |
Fix senfile typo (#6265)
* Also in docs
Diffstat (limited to 'Lib/asyncio')
-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 fcca5d4..40946bb 100644 --- a/Lib/asyncio/events.py +++ b/Lib/asyncio/events.py @@ -24,7 +24,7 @@ from . import format_helpers class SendfileNotAvailableError(RuntimeError): """Sendfile syscall is not available. - Raised if OS does not support senfile syscall for given socket or + Raised if OS does not support sendfile syscall for given socket or file type. """ |