File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -145,12 +145,12 @@ const (
145
145
146
146
// A FileInfo describes a file and is returned by Stat and Lstat.
147
147
type FileInfo interface {
148
- Name () string // base name of the file
149
- Size () int64 // length in bytes for regular files; system-dependent for others
150
- Mode () FileMode // file mode bits
148
+ Name () string // base name of the file
149
+ Size () int64 // length in bytes for regular files; system-dependent for others
150
+ Mode () FileMode // file mode bits
151
151
// ModTime() time.Time // modification time
152
- IsDir () bool // abbreviation for Mode().IsDir()
153
- Sys () interface {} // underlying data source (can return nil)
152
+ IsDir () bool // abbreviation for Mode().IsDir()
153
+ Sys () interface {} // underlying data source (can return nil)
154
154
}
155
155
156
156
// Stat is a stub, not yet implemented
You can’t perform that action at this time.
0 commit comments