]> granicus.if.org Git - python/commitdiff
Minor typo fixes
authorAndrew M. Kuchling <amk@amk.ca>
Sun, 30 Jul 2006 00:27:34 +0000 (00:27 +0000)
committerAndrew M. Kuchling <amk@amk.ca>
Sun, 30 Jul 2006 00:27:34 +0000 (00:27 +0000)
Lib/httplib.py

index 95456ea668355f667e0f959760a3c1ef1320fef7..5ae5efc916ea0118a53bdb0002bbe9fc02f75d97 100644 (file)
@@ -3,7 +3,7 @@
 <intro stuff goes here>
 <other stuff, too>
 
-HTTPConnection go through a number of "states", which defines when a client
+HTTPConnection goes through a number of "states", which define when a client
 may legally make another request or fetch the response for a particular
 request. This diagram details these state transitions:
 
@@ -934,7 +934,7 @@ class HTTPConnection:
 
         return response
 
-# The next several classes are used to define FakeSocket,a socket-like
+# The next several classes are used to define FakeSocket, a socket-like
 # interface to an SSL connection.
 
 # The primary complexity comes from faking a makefile() method.  The