From 6c35dfd8327c645029f18ccd82f468ac7764f0f6 Mon Sep 17 00:00:00 2001 From: clowwindy Date: Mon, 2 Jun 2014 18:24:26 +0800 Subject: [PATCH] fix typo --- shadowsocks/tcprelay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shadowsocks/tcprelay.py b/shadowsocks/tcprelay.py index 318dcec..c447ab8 100644 --- a/shadowsocks/tcprelay.py +++ b/shadowsocks/tcprelay.py @@ -435,7 +435,7 @@ class TCPRelay(object): def _sweep_timeout(self): # tornado's timeout memory management is more flexible that we need - # we just need a sorted last_activity queue and it's faster that heapq + # we just need a sorted last_activity queue and it's faster than heapq # in fact we can do O(1) insertion/remove so we invent our own if self._timeouts: now = time.time()