From a383a693fd5393ecdb7b52cfe064f1041ed38d74 Mon Sep 17 00:00:00 2001 From: alessio Date: Sun, 21 Aug 2016 20:26:59 +0200 Subject: [PATCH] fix doc up --- realize/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/realize/config.go b/realize/config.go index 5b7f9c6..3d31604 100644 --- a/realize/config.go +++ b/realize/config.go @@ -17,7 +17,7 @@ type Config struct { Projects []Project } -// nameParam check the project name presence. If empty takes the working directory name +// NameParam check the project name presence. If empty takes the working directory name func nameParam(params *cli.Context) string { var name string if params.String("name") == "" { @@ -28,7 +28,7 @@ func nameParam(params *cli.Context) string { return name } -// boolParam is used to check the presence of a bool flag +// BoolParam is used to check the presence of a bool flag func boolParam(b bool) bool { if b { return false