This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git

commit bacc6bec37bd8f9ee6659babcf96118bea720572
Author: Lars Kruse <de...@sumpfralle.de>
AuthorDate: Sun May 4 02:24:57 2025 +0200

    fix(locale): misspelled "February" string (nl_langinfo)
---
 libs/libc/locale/lib_langinfo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/libc/locale/lib_langinfo.c b/libs/libc/locale/lib_langinfo.c
index e385baeaba..ee85adbfa9 100644
--- a/libs/libc/locale/lib_langinfo.c
+++ b/libs/libc/locale/lib_langinfo.c
@@ -118,7 +118,7 @@ FAR char *nl_langinfo(nl_item item)
       case MON_1:
         return "January";
       case MON_2:
-        return "Feburary";
+        return "February";
       case MON_3:
         return "March";
       case MON_4:

Reply via email to