From a44d2485393622e3c775285d934990d2d6c4b22f Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Sun, 26 Mar 2023 20:52:13 +0200 Subject: [PATCH] drivers/servo: Fix typo in comment --- drivers/servo/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/servo/timer.c b/drivers/servo/timer.c index c47f31396e..b003006d4b 100644 --- a/drivers/servo/timer.c +++ b/drivers/servo/timer.c @@ -61,7 +61,7 @@ static unsigned ticks_from_us(uint64_t duration, uint64_t freq) * timer chan n+1 ------------+ * * Channel 0 is set to the period of one PWM control cycle and due to flag - * `TIM_FLAG_RESET_ON_MATCH` will end the period and stat the new period. As + * `TIM_FLAG_RESET_ON_MATCH` will end the period and start the new period. As * a result, n+1 channels are needed to control n servos. */ static void timer_cb(void *arg, int chan)