From: standby24x7 Date: Wed, 4 Mar 2026 05:44:49 +0000 (+0900) Subject: completion : Fix a typo in warning message (#20082) X-Git-Tag: upstream/0.0.8611~417 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=54910bd4f3762b716e90b658beb68d349571057e;p=pkg%2Fggml%2Fsources%2Fllama.cpp completion : Fix a typo in warning message (#20082) resuse -> reuse --- diff --git a/tools/completion/completion.cpp b/tools/completion/completion.cpp index aed2c0e38..e13816f73 100644 --- a/tools/completion/completion.cpp +++ b/tools/completion/completion.cpp @@ -376,7 +376,7 @@ int main(int argc, char ** argv) { // remove any "future" tokens that we might have inherited from the previous session if (session_tokens.size() > n_match) { if (!llama_memory_seq_rm(mem, -1, n_match, -1)) { - LOG_WRN("%s: unable to resuse common prefix (for example, when the memory is recurrent)\n", __func__); + LOG_WRN("%s: unable to reuse common prefix (for example, when the memory is recurrent)\n", __func__); llama_memory_clear(mem, true); session_tokens.clear(); n_match = 0;