From afa0a378663a63a98287714c3f3359e22a4ab29e Mon Sep 17 00:00:00 2001 From: CodeLingo Bot Date: Mon, 8 Apr 2019 06:26:50 +1200 Subject: [PATCH] Fix function comments based on best practices from Effective Go (#89) Signed-off-by: CodeLingo Bot --- internal/input/input.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/input/input.go b/internal/input/input.go index 4496c17..5ef5934 100644 --- a/internal/input/input.go +++ b/internal/input/input.go @@ -9,7 +9,7 @@ import ( "github.com/cweill/gotests/internal/models" ) -// Returns all the Golang files for the given path. Ignores hidden files. +// Files returns all the Golang files for the given path. Ignores hidden files. func Files(srcPath string) ([]models.Path, error) { srcPath, err := filepath.Abs(srcPath) if err != nil {