diff options
author | Naoki INADA <inada-n@eagle> | 2009-06-22 14:55:46 +0900 |
---|---|---|
committer | Naoki INADA <inada-n@eagle> | 2009-06-22 14:55:46 +0900 |
commit | d126e0c2998ef4ebad24d4008bf849147bf92d1e (patch) | |
tree | 730219a37b7c237db86e63f4949bf171ba600870 /msgpack/_msgpack.pyx | |
parent | fcc775e4cc18279bdf9be1530f592027cfff4540 (diff) | |
parent | 9ae7b2b28c567ce0b78a90d9b16375a4568cab1f (diff) | |
download | msgpack-python-d126e0c2998ef4ebad24d4008bf849147bf92d1e.tar.gz |
merge document fix.
Diffstat (limited to 'msgpack/_msgpack.pyx')
-rw-r--r-- | msgpack/_msgpack.pyx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/msgpack/_msgpack.pyx b/msgpack/_msgpack.pyx index aa4006b..cbdcfc5 100644 --- a/msgpack/_msgpack.pyx +++ b/msgpack/_msgpack.pyx @@ -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) |