From: Gregory P. Smith Date: Thu, 20 Aug 2009 09:38:43 +0000 (+0000) Subject: comment typo fix X-Git-Tag: v2.7a1~635 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=77db0165eb2a39a7986e7e5b08da420cc1388ac8;p=python comment typo fix --- diff --git a/Lib/httplib.py b/Lib/httplib.py index 149fcbcdfc..105daf78cf 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -328,7 +328,7 @@ class HTTPResponse: def __init__(self, sock, debuglevel=0, strict=0, method=None, buffering=False): if buffering: # The caller won't be using any sock.recv() calls, so buffering - # is fine and recommendef for performance + # is fine and recommended for performance. self.fp = sock.makefile('rb') else: # The buffer size is specified as zero, because the headers of