summaryrefslogtreecommitdiff
path: root/Lib/asyncore.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2003-02-14 01:13:01 +0000
committerAndrew M. Kuchling <amk@amk.ca>2003-02-14 01:13:01 +0000
commita6310709d5674bdba2cf8fa95d875d97014498c7 (patch)
tree3a9238971954632a2f0647fcc29b0ca4e7cb4e24 /Lib/asyncore.py
parent1575db4a0ffd406198ab891d1421cbc79e6211d3 (diff)
downloadcpython-a6310709d5674bdba2cf8fa95d875d97014498c7.tar.gz
Fix comment typo
Diffstat (limited to 'Lib/asyncore.py')
-rw-r--r--Lib/asyncore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncore.py b/Lib/asyncore.py
index 90be4d342e..a38c9113f7 100644
--- a/Lib/asyncore.py
+++ b/Lib/asyncore.py
@@ -361,7 +361,7 @@ class dispatcher:
def __getattr__(self, attr):
return getattr(self.socket, attr)
- # log and log_info maybe overriden to provide more sophisitcated
+ # log and log_info may be overridden to provide more sophisticated
# logging and warning methods. In general, log is for 'hit' logging
# and 'log_info' is for informational, warning and error logging.