From a5efdf97173a98a1c9081ab594fa1b5b55cc8606 Mon Sep 17 00:00:00 2001 From: Aravinth Sundaram Date: Sat, 25 Sep 2021 14:25:58 +0530 Subject: [PATCH] Correcting grammatical errors in README file --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 198bf011..10be5e15 100644 --- a/README.md +++ b/README.md @@ -1827,7 +1827,7 @@ func main() { quit := make(chan os.Signal) // kill (no param) default send syscall.SIGTERM // kill -2 is syscall.SIGINT - // kill -9 is syscall.SIGKILL but can't be catch, so don't need add it + // kill -9 is syscall.SIGKILL but can't be caught, so don't need to add it signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM) <-quit log.Println("Shutting down server...")