Fix formatting.

This commit is contained in:
Josh Rickmar 2013-12-05 14:12:56 -05:00
parent e7826dae00
commit 52525dd302

View file

@ -21,7 +21,7 @@ import (
)
// Rename provides an atomic file rename. newpath is replaced if it
// already exists.
// already exists.
func Rename(oldpath, newpath string) error {
return os.Rename(oldpath, newpath)
}