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