summaryrefslogtreecommitdiff
path: root/doc/codelab/wiki/part1-noerror.go
diff options
context:
space:
mode:
Diffstat (limited to 'doc/codelab/wiki/part1-noerror.go')
-rw-r--r--doc/codelab/wiki/part1-noerror.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/codelab/wiki/part1-noerror.go b/doc/codelab/wiki/part1-noerror.go
index 14cfc321a..7577b7b46 100644
--- a/doc/codelab/wiki/part1-noerror.go
+++ b/doc/codelab/wiki/part1-noerror.go
@@ -1,9 +1,12 @@
+// Copyright 2010 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
package main
import (
"fmt"
"io/ioutil"
- "os"
)
type Page struct {
@@ -11,7 +14,7 @@ type Page struct {
Body []byte
}
-func (p *Page) save() os.Error {
+func (p *Page) save() error {
filename := p.Title + ".txt"
return ioutil.WriteFile(filename, p.Body, 0600)
}