From 0a604d7edd4e53462da173dc48e9eba246a56246 Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Mon, 24 May 2021 15:55:02 +0900 Subject: [PATCH] libs/libc/libc.h: Fix a comment typo --- libs/libc/libc.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/libc/libc.h b/libs/libc/libc.h index 338e590eb17..9b2a230d995 100644 --- a/libs/libc/libc.h +++ b/libs/libc/libc.h @@ -52,11 +52,11 @@ # define CONFIG_LIB_HOMEDIR "/" #endif -/* The NuttX C library an be build in two modes: (1) as a standard, C-library - * that can be used by normal, user-space applications, or (2) as a special, - * kernel-mode C-library only used within the OS. If NuttX is not being - * built as separated kernel- and user-space modules, then only the first - * mode is supported. +/* The NuttX C library can be built in two modes: (1) as a standard, + * C-library that can be used by normal, user-space applications, or + * (2) as a special, kernel-mode C-library only used within the OS. + * If NuttX is not being built as separated kernel- and user-space modules, + * then only the first mode is supported. */ #if !defined(CONFIG_BUILD_FLAT) && defined(__KERNEL__)