From: Shagun Bera Date: Thu, 30 Oct 2025 15:47:31 +0000 (+0530) Subject: common: fix typo in cli help text (#16864) X-Git-Tag: upstream/0.0.7011~123 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=835e918d8428f5119927d7150bf5a26176dedda0;p=pkg%2Fggml%2Fsources%2Fllama.cpp common: fix typo in cli help text (#16864) --- diff --git a/common/arg.cpp b/common/arg.cpp index a465eb36..e8941cda 100644 --- a/common/arg.cpp +++ b/common/arg.cpp @@ -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; }