summaryrefslogtreecommitdiff
path: root/py
diff options
context:
space:
mode:
authorDavid Lechner <david@pybricks.com>2023-03-28 10:01:30 -0500
committerDavid Lechner <david@pybricks.com>2023-03-28 10:02:05 -0500
commit283c1ba07e054af70e7efac3d90917e29c3cca21 (patch)
tree6c9d62d4eb2701209a21e7b2b0930ae4294b3a74 /py
parent38e7b842c6bc8122753cbf0845eb141f28fbcb72 (diff)
py/obj: Fix spelling of staticmethod.
Signed-off-by: David Lechner <david@pybricks.com>
Diffstat (limited to 'py')
-rw-r--r--py/obj.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/obj.h b/py/obj.h
index 8a0a25670..d41511b0e 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -418,7 +418,7 @@ typedef struct _mp_rom_obj_t { mp_const_obj_t o; } mp_rom_obj_t;
#define MP_DEFINE_CONST_DICT(dict_name, table_name) MP_DEFINE_CONST_DICT_WITH_SIZE(dict_name, table_name, MP_ARRAY_SIZE(table_name))
-// These macros are used to declare and define constant staticmethond and classmethod objects
+// These macros are used to declare and define constant staticmethod and classmethod objects
// You can put "static" in front of the definitions to make them local
#define MP_DECLARE_CONST_STATICMETHOD_OBJ(obj_name) extern const mp_rom_obj_static_class_method_t obj_name