summaryrefslogtreecommitdiffstatshomepage
path: root/py/sequence.c
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2023-03-08 14:10:02 +1100
committerDamien George <damien@micropython.org>2023-04-27 18:03:06 +1000
commitb1229efbd1509654dec6053865ab828d769e29db (patch)
treee1a65606dd1f0a8cfe2af08f9c4ff821fb575b02 /py/sequence.c
parente160fe7bc64212a3ce56f5478f208e2b4d343a8b (diff)
downloadmicropython-b1229efbd1509654dec6053865ab828d769e29db.tar.gz
micropython-b1229efbd1509654dec6053865ab828d769e29db.zip
all: Fix spelling mistakes based on codespell check.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/sequence.c')
-rw-r--r--py/sequence.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/sequence.c b/py/sequence.c
index fa660a3384..5838607431 100644
--- a/py/sequence.c
+++ b/py/sequence.c
@@ -156,7 +156,7 @@ bool mp_seq_cmp_objs(mp_uint_t op, const mp_obj_t *items1, size_t len1, const mp
continue;
}
- // Othewise, if they are not equal, we can have final decision based on them
+ // Otherwise, if they are not equal, we can have final decision based on them
if (op == MP_BINARY_OP_EQUAL) {
// In particular, if we are checking for equality, here're the answer
return false;