summaryrefslogtreecommitdiffstatshomepage
path: root/py/obj.h
diff options
context:
space:
mode:
Diffstat (limited to 'py/obj.h')
-rw-r--r--py/obj.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/py/obj.h b/py/obj.h
index 468125eb75..f80f00031d 100644
--- a/py/obj.h
+++ b/py/obj.h
@@ -407,8 +407,8 @@ typedef struct _mp_rom_map_elem_t {
typedef struct _mp_map_t {
size_t all_keys_are_qstrs : 1;
- size_t is_fixed : 1; // a fixed array that can't be modified; must also be ordered
- size_t is_ordered : 1; // an ordered array
+ size_t is_fixed : 1; // if set, table is fixed/read-only and can't be modified
+ size_t is_ordered : 1; // if set, table is an ordered array, not a hash map
size_t used : (8 * sizeof(size_t) - 3);
size_t alloc;
mp_map_elem_t *table;