]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
common: fix typo in cli help text (#16864)
authorShagun Bera <redacted>
Thu, 30 Oct 2025 15:47:31 +0000 (21:17 +0530)
committerGitHub <redacted>
Thu, 30 Oct 2025 15:47:31 +0000 (17:47 +0200)
common/arg.cpp

index a465eb36234e7016429db3f396faa576e94c6691..e8941cda41cefb26c2fa6341f7ac0eecb29582de 100644 (file)
@@ -3203,7 +3203,7 @@ common_params_context common_params_parser_init(common_params & params, llama_ex
     ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
     add_opt(common_arg(
         {"--parse-special"},
-        string_format("prase special tokens (chat, tool, etc) (default: %s)", params.parse_special ? "true" : "false"),
+        string_format("parse special tokens (chat, tool, etc) (default: %s)", params.parse_special ? "true" : "false"),
         [](common_params & params) {
             params.parse_special = true;
         }