From 42da663e6fe7ecbb89b17d596c76812a91bb99a4 Mon Sep 17 00:00:00 2001 From: Ezio Melotti Date: Tue, 15 Mar 2011 05:18:48 +0200 Subject: #11515: fix several typos. Patch by Piotr Kasprzyk. --- Lib/http/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/http/client.py') diff --git a/Lib/http/client.py b/Lib/http/client.py index 3c70fe1a90..4a65125712 100644 --- a/Lib/http/client.py +++ b/Lib/http/client.py @@ -799,7 +799,7 @@ class HTTPConnection: 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, bytes): msg += message_body message_body = None -- cgit v1.2.1