From e930ec59b488e9dd34398cf8409ed18df15372bd Mon Sep 17 00:00:00 2001 From: Masanari Iida Date: Sun, 16 Feb 2025 10:32:03 +0900 Subject: [PATCH] server: Fix a typo in help This patch fixes a typo in command help. prefx -> prefix Signed-off-by: Masanari Iida --- common/arg.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/arg.cpp b/common/arg.cpp index b016cce0808ee..f06aa1076cca7 100644 --- a/common/arg.cpp +++ b/common/arg.cpp @@ -2247,7 +2247,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex ).set_env("LLAMA_LOG_VERBOSITY")); add_opt(common_arg( {"--log-prefix"}, - "Enable prefx in log messages", + "Enable prefix in log messages", [](common_params &) { common_log_set_prefix(common_log_main(), true); }