aboutsummaryrefslogtreecommitdiff
path: root/libgo/go/io/io.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/io/io.go')
-rw-r--r--libgo/go/io/io.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/io/io.go b/libgo/go/io/io.go
index 5520634..07e2bce 100644
--- a/libgo/go/io/io.go
+++ b/libgo/go/io/io.go
@@ -194,7 +194,7 @@ type ByteScanner interface {
// and returns the rune and its size in bytes. If no character is
// available, err will be set.
type RuneReader interface {
- ReadRune() (rune int, size int, err os.Error)
+ ReadRune() (r rune, size int, err os.Error)
}
// RuneScanner is the interface that adds the UnreadRune method to the