summaryrefslogtreecommitdiff
path: root/ports/teensy/timer.c
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2023-10-03 11:24:50 +1100
committerDamien George <damien@micropython.org>2023-10-03 11:24:50 +1100
commitcf490a70917a1b2d38ba9b58e763e0837d0f7ca7 (patch)
treefd460c9323dd46b4466193fc56dc319cbf717c77 /ports/teensy/timer.c
parent9d5d2e8cf71321b4ba41bad127bf0ea0ff24ccbf (diff)
all: Fix various spelling mistakes found by codespell 2.2.6.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'ports/teensy/timer.c')
-rw-r--r--ports/teensy/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/teensy/timer.c b/ports/teensy/timer.c
index 56d25e331..da18d6f4f 100644
--- a/ports/teensy/timer.c
+++ b/ports/teensy/timer.c
@@ -225,7 +225,7 @@ STATIC void pyb_timer_print(const mp_print_t *print, mp_obj_t self_in, mp_print_
///
/// - `mode` can be one of:
/// - `Timer.UP` - configures the timer to count from 0 to MOD (default)
-/// - `Timer.CENTER` - confgures the timer to count from 0 to MOD and
+/// - `Timer.CENTER` - configures the timer to count from 0 to MOD and
/// then back down to 0.
///
/// - `callback` - as per Timer.callback()