소스 검색

chore: fix typo (#3073)

Signed-off-by: racerole <jiangyifeng@outlook.com>
racerole 1 년 전
부모
커밋
53c107e20e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      llm/ext_server/ext_server.cpp

+ 1 - 1
llm/ext_server/ext_server.cpp

@@ -115,7 +115,7 @@ void llama_server_init(ext_server_params *sparams, ext_server_resp_t *err) {
     llama_numa_init(params.numa);
 
   if (!llama->load_model(params)) { 
-    // an error occured that was not thrown
+    // an error occurred that was not thrown
     err->id = -1;
     snprintf(err->msg, err->msg_len, "error loading model %s", params.model.c_str());
     return;