From 4e8569a7ba0133eba8d72a535935a672ac7781e9 Mon Sep 17 00:00:00 2001 From: Peter Mitsis Date: Wed, 29 Sep 2021 12:49:46 -0400 Subject: [PATCH] kernel: fix deadline typo Corrects the spelling of "dealine" to "deadline". Signed-off-by: Peter Mitsis --- include/kernel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/kernel.h b/include/kernel.h index 3af8b364c4e..df298eb345c 100644 --- a/include/kernel.h +++ b/include/kernel.h @@ -743,7 +743,7 @@ __syscall void k_thread_priority_set(k_tid_t thread, int prio); * integers. The number of cycles between the "first" deadline in the * scheduler queue and the "last" deadline must be less than 2^31 (i.e * a signed non-negative quantity). Failure to adhere to this rule - * may result in scheduled threads running in an incorrect dealine + * may result in scheduled threads running in an incorrect deadline * order. * * @note Despite the API naming, the scheduler makes no guarantees the