diff options
author | Martin Fischer <fischer.carlito@gmail.com> | 2019-03-12 21:21:22 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-03-13 12:54:01 +1100 |
commit | 912e957512dc6a4582b1bd02aeb8f1c92be6f5b2 (patch) | |
tree | 6b9e8d6214dfab69761157a78caac5cd30e3f18f | |
parent | ea95bdc1ca24e3006ef78a723e0740128ae4b0d9 (diff) |
docs/develop: Fix typos in C-module example for example_add_ints.
-rw-r--r-- | docs/develop/cmodules.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/develop/cmodules.rst b/docs/develop/cmodules.rst index c3de90a0f..919f51824 100644 --- a/docs/develop/cmodules.rst +++ b/docs/develop/cmodules.rst @@ -74,7 +74,7 @@ Directory:: #define MODULE_EXAMPLE_ENABLED (1) // This is the function which will be called from Python as example.add_ints(a, b). - STATIC mp_obj_t example_add_ints(mp_obj_t a_obj, mp_obj_tab_obj) { + STATIC mp_obj_t example_add_ints(mp_obj_t a_obj, mp_obj_t b_obj) { // Extract the ints from the micropython input objects int a = mp_obj_get_int(a_obj); int b = mp_obj_get_int(b_obj); @@ -83,7 +83,7 @@ Directory:: return mp_obj_new_int(a + b); } // Define a Python reference to the function above - STATIC MP_DEFINE_CONST_FUN_OBJ_1(example_add_ints_obj, example_add_ints); + STATIC MP_DEFINE_CONST_FUN_OBJ_2(example_add_ints_obj, example_add_ints); // Define all properties of the example module. // Table entries are key/value pairs of the attribute name (a string) |