Skip to content

Commit 6d4115f

Browse files
committed
Minor grammar fixes
1 parent de3724c commit 6d4115f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ To unpack it to list, Use ``use_list`` option.
3535
>>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=True)
3636
[1, 2, 3]
3737

38-
Read docstring for other options.
38+
Read the docstring for other options.
3939

4040

4141
streaming unpacking
4242
^^^^^^^^^^^^^^^^^^^
4343

44-
``Unpacker`` is "streaming unpacker". It unpacks multiple objects from one
44+
``Unpacker`` is a "streaming unpacker". It unpacks multiple objects from one
4545
stream.
4646

4747
::
@@ -59,10 +59,11 @@ stream.
5959
for unpacked in unpacker:
6060
print unpacked
6161

62+
6263
packing/unpacking of custom data type
6364
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6465

65-
Also possible to pack/unpack user's data types. Here is an example for
66+
It is also possible to pack/unpack custom data types. Here is an example for
6667
``datetime.datetime``.
6768

6869
::

0 commit comments

Comments
 (0)