From 8261a4bf9e668c796063495f946748eab51ae73f Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Tue, 16 Apr 2024 19:03:45 +0000 Subject: [PATCH] kconfig: fix Kconfig documentation references to the CHECKIF() macro Fix the references to the CHECKIF() from the Kconfig help documentation strings. Signed-off-by: Henrik Brix Andersen --- Kconfig.zephyr | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Kconfig.zephyr b/Kconfig.zephyr index 5375245ced0..dde5c6bbae2 100644 --- a/Kconfig.zephyr +++ b/Kconfig.zephyr @@ -520,17 +520,17 @@ choice config ASSERT_ON_ERRORS bool "Assert on all errors" help - Assert on errors covered with the CHECK macro. + Assert on errors covered with the CHECKIF() macro. config NO_RUNTIME_CHECKS bool "No runtime error checks" help - Do not do any runtime checks or asserts when using the CHECK macro. + Do not do any runtime checks or asserts when using the CHECKIF() macro. config RUNTIME_ERROR_CHECKS bool "Runtime error checks" help - Always perform runtime checks covered with the CHECK macro. This + Always perform runtime checks covered with the CHECKIF() macro. This option is the default and the only option used during testing. endchoice