Commit e7af3b8e authored by Robert Griesemer's avatar Robert Griesemer

comment change

R=r
OCL=31359
CL=31359
parent ff9e657f
...@@ -30,8 +30,8 @@ func ReadFile(filename string) ([]byte, os.Error) { ...@@ -30,8 +30,8 @@ func ReadFile(filename string) ([]byte, os.Error) {
} }
// WriteFile writes data to a file named by filename. // WriteFile writes data to a file named by filename.
// If the file does not exist, WriteFile creates it with permissions perm. // If the file does not exist, WriteFile creates it with permissions perm;
// // otherwise WriteFile truncates it before writing.
func WriteFile(filename string, data []byte, perm int) os.Error { func WriteFile(filename string, data []byte, perm int) os.Error {
f, err := os.Open(filename, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, perm); f, err := os.Open(filename, os.O_WRONLY | os.O_CREAT | os.O_TRUNC, perm);
if err != nil { if err != nil {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment