From: Benny Siegert Date: Fri, 21 Sep 2012 19:54:06 +0000 (+1000) Subject: [release-branch.go1] os: add missing full stop in comment X-Git-Tag: go1.0.3~155 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=34be79e078110b1c90976cb09f256313d7e4347e;p=gostls13.git [release-branch.go1] os: add missing full stop in comment ««« backport c61c67c7b924 os: add missing full stop in comment R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6399047 »»» --- diff --git a/src/pkg/os/types.go b/src/pkg/os/types.go index 0c95c9cece..ecb57872d5 100644 --- a/src/pkg/os/types.go +++ b/src/pkg/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