Reformat comments

This commit is contained in:
Zlatko Čalušić
2016-11-06 11:15:33 +01:00
parent d74e19b13d
commit 5de6d4fd00
11 changed files with 67 additions and 107 deletions

View File

@@ -19,8 +19,7 @@ func Open(name string) (File, error) {
return &nonCachingFile{File: file}, err
}
// nonCachingFile wraps an *os.File and calls fadvise() to instantly forget
// data that has been read or written.
// nonCachingFile wraps an *os.File and calls fadvise() to instantly forget data that has been read or written.
type nonCachingFile struct {
*os.File
readOffset int64