From d4d9addada702ab45149e5d905ae71fe09016465 Mon Sep 17 00:00:00 2001 From: Nikola Kovacs Date: Tue, 13 Jun 2017 15:57:26 +0200 Subject: [PATCH] Builded -> built --- watcher/watcher.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/watcher/watcher.go b/watcher/watcher.go index b7e16ba..fc5c54d 100644 --- a/watcher/watcher.go +++ b/watcher/watcher.go @@ -270,8 +270,8 @@ func (p *Project) build() error { out = BufferOut{Time: time.Now(), Text: err.Error(), Type: "Go Build", Stream: stream} p.print("error", out, msg, stream) } else { - msg = fmt.Sprintln(p.pname(p.Name, 5), ":", style.Green.Regular("Builded")+" after", style.Magenta.Regular(big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3), " s")) - out = BufferOut{Time: time.Now(), Text: "Builded after " + big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3) + " s"} + msg = fmt.Sprintln(p.pname(p.Name, 5), ":", style.Green.Regular("Built")+" after", style.Magenta.Regular(big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3), " s")) + out = BufferOut{Time: time.Now(), Text: "Built after " + big.NewFloat(float64(time.Since(start).Seconds())).Text('f', 3) + " s"} p.print("log", out, msg, stream) } return err