summaryrefslogtreecommitdiff
path: root/msgpack/_msgpack.pyx
diff options
context:
space:
mode:
authorNaoki INADA <inada-n@eagle>2009-06-22 14:55:46 +0900
committerNaoki INADA <inada-n@eagle>2009-06-22 14:55:46 +0900
commitd126e0c2998ef4ebad24d4008bf849147bf92d1e (patch)
tree730219a37b7c237db86e63f4949bf171ba600870 /msgpack/_msgpack.pyx
parentfcc775e4cc18279bdf9be1530f592027cfff4540 (diff)
parent9ae7b2b28c567ce0b78a90d9b16375a4568cab1f (diff)
downloadmsgpack-python-d126e0c2998ef4ebad24d4008bf849147bf92d1e.tar.gz
merge document fix.
Diffstat (limited to 'msgpack/_msgpack.pyx')
-rw-r--r--msgpack/_msgpack.pyx6
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)