summaryrefslogtreecommitdiffstats
path: root/Lib/asyncore.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2003-02-14 01:13:01 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2003-02-14 01:13:01 (GMT)
commitc07fb2fc5bcb21a3dcbb0abbf3b52bab725cbce9 (patch)
tree7d67e4cc9f879632205e656fdb2c1e82d4e56b3f /Lib/asyncore.py
parent92c8bb3abf9770cf9efaaa992f279c4103e331ed (diff)
downloadcpython-c07fb2fc5bcb21a3dcbb0abbf3b52bab725cbce9.zip
cpython-c07fb2fc5bcb21a3dcbb0abbf3b52bab725cbce9.tar.gz
cpython-c07fb2fc5bcb21a3dcbb0abbf3b52bab725cbce9.tar.bz2
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 90be4d3..a38c911 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.