all: Fix various spelling mistakes found by codespell 2.2.6.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George
2023-10-03 11:24:50 +11:00
parent 9d5d2e8cf7
commit cf490a7091
20 changed files with 22 additions and 22 deletions

View File

@@ -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;
}