From 397cae79620e09220f4207beadd523ce1ae7cbd5 Mon Sep 17 00:00:00 2001 From: Sean Khatiri <39913795+seankhatiri@users.noreply.github.com> Date: Tue, 27 Aug 2024 16:28:29 -0400 Subject: [PATCH] llm: fix typo in comment (#6530) --- llm/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llm/server.go b/llm/server.go index 4e5dac283..c38bc6bb8 100644 --- a/llm/server.go +++ b/llm/server.go @@ -409,7 +409,7 @@ func NewLlamaServer(gpus gpu.GpuInfoList, model string, ggml *GGML, adapters, pr } if err = s.cmd.Start(); err != nil { - // Detect permission denied and augment them essage about noexec + // Detect permission denied and augment the message about noexec if errors.Is(err, os.ErrPermission) { finalErr = fmt.Errorf("unable to start server %w. %s may have noexec set. Set OLLAMA_TMPDIR for server to a writable executable directory", err, dir) continue