summaryrefslogtreecommitdiffstatshomepage
path: root/shared/runtime/softtimer.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 /shared/runtime/softtimer.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 'shared/runtime/softtimer.c')
-rw-r--r--shared/runtime/softtimer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/runtime/softtimer.c b/shared/runtime/softtimer.c
index 68173ac337..267610b269 100644
--- a/shared/runtime/softtimer.c
+++ b/shared/runtime/softtimer.c
@@ -41,7 +41,7 @@ STATIC soft_timer_entry_t *soft_timer_heap;
static inline int32_t ticks_diff(uint32_t t1, uint32_t t0) {
// t1 is after t0 (i.e. positive result) if there exists a uint32_t X <= INT_MAX
- // such that t0 + X = t1. Otherwise t1 is interepreted to be earlier than
+ // such that t0 + X = t1. Otherwise t1 is interpreted to be earlier than
// t0 (negative result).
return t1 - t0;
}