summaryrefslogtreecommitdiff
path: root/Lib/selectors.py
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-02-18 22:27:48 -0500
committerYury Selivanov <yselivanov@sprymix.com>2014-02-18 22:27:48 -0500
commitb0b0e628ee453126efb16805588ef60e2601fd08 (patch)
tree1048819ba08c5f0f1db2b96abdcc0e38c16d24db /Lib/selectors.py
parent8abac348a9a6d8f64527f913609789f50251ba58 (diff)
downloadcpython-git-b0b0e628ee453126efb16805588ef60e2601fd08.tar.gz
asyncio: Fix spelling and typos.
Thanks to Vajrasky Kok for discovering some of them.
Diffstat (limited to 'Lib/selectors.py')
-rw-r--r--Lib/selectors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/selectors.py b/Lib/selectors.py
index bb2a45a839..a5465e241f 100644
--- a/Lib/selectors.py
+++ b/Lib/selectors.py
@@ -80,7 +80,7 @@ class BaseSelector(metaclass=ABCMeta):
A selector can use various implementations (select(), poll(), epoll()...)
depending on the platform. The default `Selector` class uses the most
- performant implementation on the current platform.
+ efficient implementation on the current platform.
"""
@abstractmethod