summaryrefslogtreecommitdiffstatshomepage
path: root/docs/library/ustruct.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/library/ustruct.rst')
-rw-r--r--docs/library/ustruct.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/library/ustruct.rst b/docs/library/ustruct.rst
index cebf0b8ef2..ae5b1be003 100644
--- a/docs/library/ustruct.rst
+++ b/docs/library/ustruct.rst
@@ -12,11 +12,11 @@ Functions
.. function:: calcsize(fmt)
- Return the number of bytes needed to store the given ``fmt``.
+ Return the number of bytes needed to store the given `fmt`.
.. function:: pack(fmt, v1, v2, ...)
- Pack the values ``v1``, ``v2``, ... according to the format string ``fmt``.
+ Pack the values `v1`, `v2`, ... according to the format string `fmt`.
The return value is a bytes object encoding the values.
.. function:: pack_into(fmt, buffer, offset, v1, v2, ...)
@@ -27,7 +27,7 @@ Functions
.. function:: unpack(fmt, data)
- Unpack from the ``data`` according to the format string ``fmt``.
+ Unpack from the `data` according to the format string `fmt`.
The return value is a tuple of the unpacked values.
.. function:: unpack_from(fmt, data, offset=0)