From fb44cf4e08c94d125f1782e8cbb11eabc19b6d0c Mon Sep 17 00:00:00 2001 From: Yuta Hayashibe Date: Sat, 24 May 2025 00:40:15 +0900 Subject: [PATCH] Fix typos (#143) --- README.md | 2 +- misc/simple-responder/simple-responder.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b56708d..be8d56e 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ llama-swap is a light weight, transparent proxy server that provides automatic model swapping to llama.cpp's server. -Written in golang, it is very easy to install (single binary with no dependancies) and configure (single yaml file). To get started, download a pre-built binary or use the provided docker images. +Written in golang, it is very easy to install (single binary with no dependencies) and configure (single yaml file). To get started, download a pre-built binary or use the provided docker images. ## Features: diff --git a/misc/simple-responder/simple-responder.go b/misc/simple-responder/simple-responder.go index 60b0ff4..d06840d 100644 --- a/misc/simple-responder/simple-responder.go +++ b/misc/simple-responder/simple-responder.go @@ -223,13 +223,13 @@ runloop: if countSigInt > 1 { break runloop } else { - log.Println("Recieved SIGINT, send another SIGINT to shutdown") + log.Println("Received SIGINT, send another SIGINT to shutdown") } case syscall.SIGTERM: if *ignoreSigTerm { log.Println("Ignoring SIGTERM") } else { - log.Println("Recieved SIGTERM, shutting down") + log.Println("Received SIGTERM, shutting down") break runloop } default: