summaryrefslogtreecommitdiff
path: root/py/obj.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/obj.c')
-rw-r--r--py/obj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/obj.c b/py/obj.c
index 64c52eeb7..d013eb3d0 100644
--- a/py/obj.c
+++ b/py/obj.c
@@ -286,7 +286,7 @@ mp_obj_t mp_obj_equal_not_equal(mp_binary_op_t op, mp_obj_t o1, mp_obj_t o2) {
o2 = temp;
}
- // equality not implemented, so fall back to pointer conparison
+ // equality not implemented, so fall back to pointer comparison
return (o1 == o2) ? local_true : local_false;
}