Fixes another code comment.
This commit is contained in:
parent
f5e037a829
commit
ca6a684780
|
@ -14,7 +14,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// Translate reads assets from an input directory, converts them
|
// Translate reads assets from an input directory, converts them
|
||||||
// to Go code and writes new files to the output file specified
|
// to Go code and writes new files to the output specified
|
||||||
// in the given configuration.
|
// in the given configuration.
|
||||||
func Translate(c *Config) error {
|
func Translate(c *Config) error {
|
||||||
var toc []Asset
|
var toc []Asset
|
||||||
|
@ -68,7 +68,7 @@ func Translate(c *Config) error {
|
||||||
return writeTOC(fd, toc)
|
return writeTOC(fd, toc)
|
||||||
}
|
}
|
||||||
|
|
||||||
// fillTOC recursively finds all the file paths in the given directory tree.
|
// findFiles recursively finds all the file paths in the given directory tree.
|
||||||
// They are added to the given map as keys. Values will be safe function names
|
// They are added to the given map as keys. Values will be safe function names
|
||||||
// for each file, which will be used when generating the output code.
|
// for each file, which will be used when generating the output code.
|
||||||
func findFiles(dir, prefix string, recursive bool, toc *[]Asset) error {
|
func findFiles(dir, prefix string, recursive bool, toc *[]Asset) error {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user