Skip to content

Commit 5938870

Browse files
committed
Fix README reST
1 parent 00f193b commit 5938870

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ msgpack provides ``dumps`` and ``loads`` as alias for compatibility with
110110
>>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=False)
111111
(1, 2, 3)
112112

113-
You should always pass the ``use_list`` keyword argument. See performance issues relating to use_list_ below.
113+
You should always pass the ``use_list`` keyword argument. See performance issues relating to `use_list option`_ below.
114114

115115
Read the docstring for other options.
116116

@@ -237,8 +237,8 @@ CPython's GC starts when growing allocated object.
237237
This means unpacking may cause useless GC.
238238
You can use ``gc.disable()`` when unpacking large message.
239239

240-
`use_list` option
241-
^^^^^^^^^^^^^^^^^^
240+
use_list option
241+
^^^^^^^^^^^^^^^^
242242
List is the default sequence type of Python.
243243
But tuple is lighter than list.
244244
You can use ``use_list=False`` while unpacking when performance is important.

0 commit comments

Comments
 (0)