Prefer mixedCaps over underscore

This commit is contained in:
Florian Weingarten
2015-04-24 19:39:32 -04:00
parent 8be6dc0265
commit ebae478631
13 changed files with 76 additions and 76 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ func NodeFromFileInfo(path string, fi os.FileInfo) (*Node, error) {
node.Size = uint64(fi.Size())
}
err := node.fill_extra(path, fi)
err := node.fillExtra(path, fi)
return node, err
}