From: Yury Selivanov Date: Mon, 8 Dec 2014 17:30:10 +0000 (-0500) Subject: selectors: Fix typo in comment. X-Git-Tag: v3.4.3rc1~249 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfc44e0525f87eea47607290aaa7eab4abecca4a;p=python selectors: Fix typo in comment. --- diff --git a/Lib/selectors.py b/Lib/selectors.py index 25b8d79821..e4ad4cb18c 100644 --- a/Lib/selectors.py +++ b/Lib/selectors.py @@ -419,7 +419,7 @@ if hasattr(select, 'epoll'): # from zero to wait *at least* timeout seconds. timeout = math.ceil(timeout * 1e3) * 1e-3 - # epoll_wait() expectcs `maxevents` to be greater than zero; + # epoll_wait() expects `maxevents` to be greater than zero; # we want to make sure that `select()` can be called when no # FD is registered. max_ev = max(len(self._fd_to_key), 1)