Browse Source

[trac419] fix some comments typo

chenzhengzhang 14 years ago
parent
commit
2f0de2e7a8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/bin/xfrout/xfrout.py.in

+ 2 - 2
src/bin/xfrout/xfrout.py.in

@@ -346,8 +346,8 @@ class UnixSockServer(socketserver_mixin.NoPollMixIn, ThreadingUnixStreamServer):
                 break
 
     def _handle_request_noblock(self):
-        """Overide the function _handle_request_noblock(), it create a new thread to
-        handle requests for each auth"""
+        """Override the function _handle_request_noblock(), it creates a new
+        thread to handle requests for each auth"""
         td = threading.Thread(target=self.handle_request)
         td.setDaemon(True)
         td.start()