From 34be79e078110b1c90976cb09f256313d7e4347e Mon Sep 17 00:00:00 2001 From: Benny Siegert Date: Sat, 22 Sep 2012 05:54:06 +1000 Subject: [PATCH] [release-branch.go1] os: add missing full stop in comment MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit ««« backport c61c67c7b924 os: add missing full stop in comment R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6399047 »»» --- src/pkg/os/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0