summaryrefslogtreecommitdiff
path: root/libgo/go/os/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/os/types.go')
-rw-r--r--libgo/go/os/types.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/os/types.go b/libgo/go/os/types.go
index 0c95c9cece0..ecb57872d52 100644
--- a/libgo/go/os/types.go
+++ b/libgo/go/os/types.go
@@ -12,7 +12,7 @@ import (
// Getpagesize returns the underlying system's memory page size.
func Getpagesize() int { return syscall.Getpagesize() }
-// A FileInfo describes a file and is returned by Stat and Lstat
+// A FileInfo describes a file and is returned by Stat and Lstat.
type FileInfo interface {
Name() string // base name of the file
Size() int64 // length in bytes for regular files; system-dependent for others