Fix document miss.

This commit is contained in:
Naoki INADA
2009-06-10 13:33:42 +09:00
parent 3a9f74e79c
commit e814986b4e

View File

@@ -79,7 +79,7 @@ cdef class Packer:
packer.pack('foo')
packer.pack('bar')
This code is same as below code:
This is same to:
packer.pack(['foo', 'bar'])
"""
@@ -94,9 +94,9 @@ cdef class Packer:
packer.pack('foo')
packer.pack('bar')
This code is same as below code:
This is same to:
packer.pack({'foo', 'bar'})
packer.pack({'foo': 'bar'})
"""
msgpack_pack_map(&self.pk, len)