mirror of https://github.com/golang/go.git
os: add missing full stop in comment
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/6399047
This commit is contained in:
parent
d5c2154caf
commit
e726197858
|
|
@ -12,7 +12,7 @@ import (
|
||||||
// Getpagesize returns the underlying system's memory page size.
|
// Getpagesize returns the underlying system's memory page size.
|
||||||
func Getpagesize() int { return syscall.Getpagesize() }
|
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 {
|
type FileInfo interface {
|
||||||
Name() string // base name of the file
|
Name() string // base name of the file
|
||||||
Size() int64 // length in bytes for regular files; system-dependent for others
|
Size() int64 // length in bytes for regular files; system-dependent for others
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue