Browse Source

Fix typo (#1913)

ZYunH 6 years ago
parent
commit
78a8b5c9d5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -1694,7 +1694,7 @@ func main() {
 	quit := make(chan os.Signal)
 	quit := make(chan os.Signal)
 	// kill (no param) default send syscall.SIGTERM
 	// kill (no param) default send syscall.SIGTERM
 	// kill -2 is syscall.SIGINT
 	// 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 catch, so don't need add it
 	signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
 	signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
 	<-quit
 	<-quit
 	log.Println("Shutdown Server ...")
 	log.Println("Shutdown Server ...")