Skip to content

Commit

Permalink
Correcting grammatical errors in README file (#2880)
Browse files Browse the repository at this point in the history
  • Loading branch information
aravinth2094 authored Sep 28, 2021
1 parent e052bf3 commit ef16867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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...")
Expand Down

0 comments on commit ef16867

Please sign in to comment.