From 02f53ca0144a637dea2cda9dce51e83296f3a009 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sat, 18 May 2024 15:21:37 -0500 Subject: [PATCH] Formatting. --- src/core/os.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/os.c b/src/core/os.c index b642d735..d2de39a7 100644 --- a/src/core/os.c +++ b/src/core/os.c @@ -1906,9 +1906,9 @@ JANET_CORE_FN(os_mktime, #endif JANET_CORE_FN(os_setlocale, - "(os/setlocale category &opt locale)", - "Set the system locale, which affects how dates, currencies, and numbers are formatted. " - "Passing nil to locale will return the current locale.") { + "(os/setlocale category &opt locale)", + "Set the system locale, which affects how dates and numbers are formatted. " + "Passing nil to locale will return the current locale.") { janet_arity(argc, 1, 2); const char *locale_name = janet_optcstring(argv, argc, 1, NULL); int category_int = 0;