]> granicus.if.org Git - python/commitdiff
Fix senfile typo (#6265)
authorSam Dunster <me@sdunster.com>
Wed, 28 Mar 2018 00:47:38 +0000 (17:47 -0700)
committerŁukasz Langa <lukasz@langa.pl>
Wed, 28 Mar 2018 00:47:38 +0000 (17:47 -0700)
* Also in docs

Doc/library/asyncio-eventloop.rst
Lib/asyncio/events.py

index 3ee9939192c1795d934e91587a4c6c7b6645d38c..ca8055bd162f695d431ee3d20b2f12edd122666b 100644 (file)
@@ -1114,7 +1114,7 @@ SendfileNotAvailableError
 
    Sendfile syscall is not available, subclass of :exc:`RuntimeError`.
 
-   Raised if the OS does not support senfile syscall for
+   Raised if the OS does not support sendfile syscall for
    given socket or file type.
 
 
index fcca5d4cb34716823ae587d7d43950d477ec3770..40946bbf65299ddd263c2f47d7a628f89b6feed4 100644 (file)
@@ -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.
     """