Improve variable and struct attribute names

This commit is contained in:
2018-07-08 18:38:06 +01:00
parent f6e485a2a3
commit 2b9fece77f
2 changed files with 9 additions and 9 deletions

View File

@@ -7,9 +7,9 @@ import (
"github.com/jimeh/rbheap/obj"
)
func NewFinder(file1, file2, file3 string) *Finder {
func NewFinder(filePath1, filePath2, filePath3 string) *Finder {
return &Finder{
FilePaths: [3]string{file1, file2, file3},
FilePaths: [3]string{filePath1, filePath2, filePath3},
}
}