fix a typo in a comment

This commit is contained in:
YAMAMOTO Takashi 2013-05-01 12:15:12 +09:00
parent b587bb02c4
commit 0c3fecf91b

View file

@ -147,7 +147,7 @@ class Unpacker(object):
example of streaming deserialization from socket:: example of streaming deserialization from socket::
unpacker = Unapcker() unpacker = Unpacker()
while 1: while 1:
buf = sock.recv(1024*2) buf = sock.recv(1024*2)
if not buf: if not buf: