Skip to content

Commit 534b48f

Browse files
committed
remove a ~ from doc that causes an error; add ExtType.c to circuitpy_defns.mk
1 parent b5b6b6d commit 534b48f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

locale/circuitpython.pot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2020-12-07 15:35-0800\n"
11+
"POT-Creation-Date: 2020-12-07 16:05-0800\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"

py/circuitpy_defns.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,7 @@ $(filter $(SRC_PATTERNS), \
407407
microcontroller/ResetReason.c \
408408
microcontroller/RunMode.c \
409409
msgpack/__init__.c \
410+
msgpack/ExtType.c \
410411
supervisor/RunReason.c \
411412
)
412413

shared-bindings/msgpack/ExtType.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
//| def __init__(self, code: int, data: bytes) -> None:
3535
//| """Constructor"""
3636
//|
37-
//| :param int code: type code in range 0~127.
37+
//| :param int code: type code in range 0 .. 127.
3838
//| :param bytes data: representation.
3939

4040
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) {

0 commit comments

Comments
 (0)