From 7a48ade7ef3da763f42afa438166da20697d5647 Mon Sep 17 00:00:00 2001 From: anon Date: Tue, 13 Jun 2023 14:46:40 -0300 Subject: [PATCH] fix comment indentation --- examples/server/server.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/server/server.cpp b/examples/server/server.cpp index cb9529169..3a87f5116 100644 --- a/examples/server/server.cpp +++ b/examples/server/server.cpp @@ -385,10 +385,10 @@ struct llama_server_context { // 2-byte characters: 110xxxxx 10xxxxxx if ((c & 0xE0) == 0xC0) { multibyte_pending = 1; - // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx + // 3-byte characters: 1110xxxx 10xxxxxx 10xxxxxx } else if ((c & 0xF0) == 0xE0) { multibyte_pending = 2; - // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx + // 4-byte characters: 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx } else if ((c & 0xF8) == 0xF0) { multibyte_pending = 3; } else {