From dc1dcb9b5db30e4d13ce8278e83db55e061e0e9e Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Thu, 19 Aug 2021 08:58:19 +0200 Subject: [PATCH] tests/irq_disable_restore: fix typo in comment --- tests/irq_disable_restore/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/irq_disable_restore/main.c b/tests/irq_disable_restore/main.c index c140ef0b63..552d01f271 100644 --- a/tests/irq_disable_restore/main.c +++ b/tests/irq_disable_restore/main.c @@ -64,7 +64,7 @@ int main(void) /* Timer should have fired in the middle of busy_delay(), thus value of * a now and during ISR should both be 1, but value of b during ISR should - * still be 0 but not it should be 1 */ + * still be 0 but now it should be 1 */ if ((atomic_load(&a) == atomic_load(&a_during_isr)) && (atomic_load(&b) != atomic_load(&b_during_isr))) {