From b779ea2d19daeb7ec034675d79caf07f9479f41c Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Wed, 17 Oct 2018 13:40:43 +0300 Subject: [PATCH] kernel: syscall_handler.h: Typo fix in docstring Should be "fails" instead of "files". Signed-off-by: Paul Sokolovsky --- kernel/include/syscall_handler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/include/syscall_handler.h b/kernel/include/syscall_handler.h index 0809c2e90aa..c96696187c3 100644 --- a/kernel/include/syscall_handler.h +++ b/kernel/include/syscall_handler.h @@ -437,7 +437,7 @@ static inline int _obj_validation_check(struct _k_object *ko, /** * @brief Runtime check kernel object pointer for non-init functions * - * Calls _k_object_validate and triggers a kernel oops if the check files. + * Calls _k_object_validate and triggers a kernel oops if the check fails. * For use in system call handlers which are not init functions; a fatal * error will occur if the object is not initialized. *