From cec34477c08c2ed1702829640de70868099fbb08 Mon Sep 17 00:00:00 2001 From: kalipso Date: Sat, 28 Oct 2023 11:39:05 +0200 Subject: [PATCH] [actions/printer] add missing newline --- actions/printer.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/printer.go b/actions/printer.go index 1c8904b..2cf5301 100644 --- a/actions/printer.go +++ b/actions/printer.go @@ -13,12 +13,12 @@ type Printer struct { } func (p Printer) Execute() { - fmt.Printf("Print action fires. Message: %s", p.Message) + fmt.Printf("Print action fires. Message: %s\n", p.Message) p.ActionChan <- true } func (p Printer) DryExecute() { - fmt.Printf("Print action fire test. Message: %s", p.Message) + fmt.Printf("Print action fire test. Message: %s\n", p.Message) p.ActionChan <- true }