Merge pull request #62 from yamt/comment-typo

fix a typo in a comment
This commit is contained in:
INADA Naoki 2013-05-01 01:23:41 -07:00
commit a2a9a9f4c8

View file

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