From: Benny Siegert Date: Sun, 15 Jul 2012 16:48:31 +0000 (-0700) Subject: os: add missing full stop in comment X-Git-Tag: go1.1rc2~2802 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e726197858759794d245da0f1d57e0699b1f227f;p=gostls13.git 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