From 88981acf51d125d671327b13de1462b0e82a84e7 Mon Sep 17 00:00:00 2001 From: alessio Date: Wed, 24 Aug 2016 15:32:57 +0200 Subject: [PATCH] minor bug fixes --- realize/watcher.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/realize/watcher.go b/realize/watcher.go index 180209d..c590f1e 100644 --- a/realize/watcher.go +++ b/realize/watcher.go @@ -125,7 +125,7 @@ func (p *Project) watching() { } } -// Install call an implementation of the "go install" +// Install calls an implementation of the "go install" func (p *Project) install(channel chan bool, wr *sync.WaitGroup) { if p.Bin { log.Println(pname(p.Name, 1), ":", "Installing..") @@ -153,7 +153,7 @@ func (p *Project) install(channel chan bool, wr *sync.WaitGroup) { return } -// Build call an implementation of the "go build" +// Build calls an implementation of the "go build" func (p *Project) build() { if p.Build { log.Println(pname(p.Name, 1), ":", "Building..") @@ -168,7 +168,7 @@ func (p *Project) build() { return } -// Build call an implementation of the "gofmt" +// Build calls an implementation of the "gofmt" func (p *Project) fmt(path string) error { if p.Fmt { if msg, err := p.GoFmt(path); err != nil {