Fix typos (#143)

This commit is contained in:
Yuta Hayashibe
2025-05-24 00:40:15 +09:00
committed by GitHub
parent 02aee4e86d
commit fb44cf4e08
2 changed files with 3 additions and 3 deletions

View File

@@ -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: