From 0fc1a7f84683a3f8aebacc77aa9cc85c4db4737e Mon Sep 17 00:00:00 2001 From: uditaren Date: Fri, 29 May 2020 16:37:38 +0200 Subject: [PATCH] Fix: typo --- terminator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminator.go b/terminator.go index dde3791..13a13b2 100644 --- a/terminator.go +++ b/terminator.go @@ -20,6 +20,6 @@ func init() { // in order to notify interested parties to quit. go func(c <-chan os.Signal) { <-c - close(Terminator) + close(Terminate) }(sigs) }