From dd9da85055bc80e21a56229455ee1867bef90f43 Mon Sep 17 00:00:00 2001 From: Xavi Ramirez Date: Thu, 10 Aug 2017 19:15:53 +0000 Subject: [PATCH] Fixed type-o --- kcl/kcl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kcl/kcl.go b/kcl/kcl.go index 3ff33bc..93aaf0d 100644 --- a/kcl/kcl.go +++ b/kcl/kcl.go @@ -233,7 +233,7 @@ func (kclp *KCLProcess) handleLine(line string) error { case ActionShutdown: kclp.ioHandler.writeError("Received shutdown action...") - // Shutdown should block until it's save to shutdown the process + // Shutdown should block until it's safe to shutdown the process err = kclp.recordProcessor.Shutdown(action.Reason) if err != nil { // Log error and continue shutting down kclp.ioHandler.writeError(fmt.Sprintf("ERR shutdown: %+#v", err))