diff options
author | Damien George <damien.p.george@gmail.com> | 2014-01-14 23:18:35 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-01-14 23:18:35 +0000 |
commit | 0f59203e37de155c3c7e3fadb35fd3b06cb75478 (patch) | |
tree | 5e30d1c00796fe868c2e55b3cdac03a09071e188 /py/obj.h | |
parent | 6c2401e935b38ca87fd8f52efbb614a428b6938c (diff) | |
download | micropython-0f59203e37de155c3c7e3fadb35fd3b06cb75478.tar.gz micropython-0f59203e37de155c3c7e3fadb35fd3b06cb75478.zip |
Tidy up.
Diffstat (limited to 'py/obj.h')
-rw-r--r-- | py/obj.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -292,7 +292,7 @@ extern const mp_obj_type_t list_type; mp_obj_t mp_obj_list_append(mp_obj_t self_in, mp_obj_t arg); void mp_obj_list_get(mp_obj_t self_in, uint *len, mp_obj_t **items); void mp_obj_list_store(mp_obj_t self_in, mp_obj_t index, mp_obj_t value); -mp_obj_t list_sort(mp_obj_t args, struct _mp_map_t *kwargs); +mp_obj_t mp_obj_list_sort(mp_obj_t args, struct _mp_map_t *kwargs); // dict extern const mp_obj_type_t dict_type; |