#11515: fix several typos. Patch by Piotr Kasprzyk.
diff --git a/Lib/httplib.py b/Lib/httplib.py
index 5af0d02..6e72e2c 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -804,7 +804,7 @@
del self._buffer[:]
# If msg and message_body are sent in a single send() call,
# it will avoid performance problems caused by the interaction
- # between delayed ack and the Nagle algorithim.
+ # between delayed ack and the Nagle algorithm.
if isinstance(message_body, str):
msg += message_body
message_body = None