From 27b023ce9af1bfa7dd119fffef845ce2d08ad511 Mon Sep 17 00:00:00 2001 From: CyanFalse <53730587+ChenYFan@users.noreply.github.com> Date: Sun, 8 Mar 2026 17:05:03 +0800 Subject: [PATCH] Corrected spelling of 'beacause' to 'because'. Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- tools/server/server-common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/server/server-common.cpp b/tools/server/server-common.cpp index 8af2215611..2abc7cd58f 100644 --- a/tools/server/server-common.cpp +++ b/tools/server/server-common.cpp @@ -415,7 +415,7 @@ void server_tokens::keep_first(size_t n) { // note that the case where we keep a full image at the end is allowed: // tokens[n - 1] == LLAMA_TOKEN_NULL && tokens[n] != LLAMA_TOKEN_NULL if (has_precomputed) { //if it is precomputed, we only need to check if the previous token is precomputed. - find_precomputed(n - 1); // must be find_precomputed but not find_chunk.beacause it knows more than mtmd chunk + find_precomputed(n - 1); // must be find_precomputed but not find_chunk.because it knows more than mtmd chunk } else if (tokens[n - 1] == LLAMA_TOKEN_NULL && tokens[n] == LLAMA_TOKEN_NULL) { find_chunk(n - 1); // will throw an error if the token is not begin-of-chunk