From 12e2c317c8f2f1e9c97b8bc882153ca81ba9d8a5 Mon Sep 17 00:00:00 2001 From: jaime-m-p <> Date: Mon, 24 Jun 2024 20:39:54 +0200 Subject: [PATCH] style: remove trailing whitespace --- llama.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama.cpp b/llama.cpp index 4bc5a631b..af310ee2e 100644 --- a/llama.cpp +++ b/llama.cpp @@ -18540,7 +18540,7 @@ int32_t llama_detokenize( if (text[i - 1] == ' ') { if (x == '?' || x == '!' || x == '.' || x == ',') { // " ?", " !", " .", " ," total--; // remove space - } + } } text[total++] = x; }