]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
common : Fix a typo in help (#11899)
authorstandby24x7 <redacted>
Sun, 16 Feb 2025 09:51:13 +0000 (18:51 +0900)
committerGitHub <redacted>
Sun, 16 Feb 2025 09:51:13 +0000 (10:51 +0100)
This patch fixes a typo in command help.
prefx -> prefix

Signed-off-by: Masanari Iida <redacted>
common/arg.cpp

index b016cce0808ee1635c26406694a1d156cc35fdf4..f06aa1076cca70e01f507b49c116424801fa8ce2 100644 (file)
@@ -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);
         }