Skip to content

Commit 9412c3f

Browse files
committed
moved misplaced triple-quote
1 parent 534b48f commit 9412c3f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

shared-bindings/msgpack/ExtType.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@
3232
//| class ExtType:
3333
//| """ExtType represents ext type in msgpack."""
3434
//| def __init__(self, code: int, data: bytes) -> None:
35-
//| """Constructor"""
36-
//|
37-
//| :param int code: type code in range 0 .. 127.
38-
//| :param bytes data: representation.
35+
//| """Constructor
36+
//| :param int code: type code in range 0~127.
37+
//| :param bytes data: representation."""
3938

4039
STATIC mp_obj_t mod_msgpack_exttype_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
4140
mod_msgpack_extype_obj_t *self = m_new_obj(mod_msgpack_extype_obj_t);

0 commit comments

Comments
 (0)