diff options
author | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-19 03:27:48 (GMT) |
---|---|---|
committer | Yury Selivanov <yselivanov@sprymix.com> | 2014-02-19 03:27:48 (GMT) |
commit | dec1a45fd1b37d4688fa5846a0d32a2393808fb1 (patch) | |
tree | c0affa11a1d58436f2b109e2330bf104ae000afd /Lib/selectors.py | |
parent | 74d519fcc685f903a9127987ae53ff75eaf17d73 (diff) | |
download | cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.zip cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.gz cpython-dec1a45fd1b37d4688fa5846a0d32a2393808fb1.tar.bz2 |
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.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/selectors.py b/Lib/selectors.py index bb2a45a..a5465e2 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 |