diff options
author | TW <tw@waldmann-edv.de> | 2017-01-11 04:04:23 +0100 |
---|---|---|
committer | INADA Naoki <methane@users.noreply.github.com> | 2017-01-11 12:04:23 +0900 |
commit | e3fea94509767047a8ff45aa07cd58a9ba9694e7 (patch) | |
tree | 9a4cceb6a1967c8f83263cea13c4f80af901cef4 /msgpack/_unpacker.pyx | |
parent | a9f4dad4dcde4db148f22720c694e5b5e0cb6f2d (diff) | |
download | msgpack-python-release-0.4.tar.gz |
fix typos and other cosmetic issues (#214)release-0.4
cosmetic issues:
- reST headlines' underline length needs to match the headline length
(looks like somebody is / was using a proportional font)
- Cython code lines do not need to be terminated with a semicolon
- always use triple-double-quotes for docstrings
Diffstat (limited to 'msgpack/_unpacker.pyx')
-rw-r--r-- | msgpack/_unpacker.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/msgpack/_unpacker.pyx b/msgpack/_unpacker.pyx index 1aefc64..2a13903 100644 --- a/msgpack/_unpacker.pyx +++ b/msgpack/_unpacker.pyx @@ -209,7 +209,7 @@ cdef class Unpacker(object): :param int max_buffer_size: Limits size of data waiting unpacked. 0 means system's INT_MAX (default). Raises `BufferFull` exception when it is insufficient. - You shoud set this parameter when unpacking data from untrusted source. + You should set this parameter when unpacking data from untrusted source. :param int max_str_len: Limits max length of str. (default: 2**31-1) |