ebitentutil: Fix wrong comments

This commit is contained in:
Hajime Hoshi 2017-12-16 23:30:47 +09:00
parent 10080d83e6
commit d1f9312242

View File

@ -32,7 +32,7 @@ func OpenFile(path string) (ReadSeekCloser, error) {
return os.Open(path)
}
// JoinFilePath joins any number of path elements into a single path,
// JoinStringsIntoFilePath joins any number of path elements into a single path,
// adding a Separator if necessary.
//
// This is basically same as filepath.Join, but the behavior is different on JavaScript.