diff options
author | Ayke van Laethem <[email protected]> | 2019-07-15 01:55:10 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2019-07-15 17:53:01 +0200 |
commit | 8a704e43fcb001399048bb85db0eec6d499c42a6 (patch) | |
tree | 45837b7a60d9ef921610e0624e8d62c6a12c1dd6 | |
parent | 847681457fe1f4f7fa9e637f140cbe11f82ef383 (diff) | |
download | tinygo-8a704e43fcb001399048bb85db0eec6d499c42a6.tar.gz tinygo-8a704e43fcb001399048bb85db0eec6d499c42a6.zip |
os: gofmt
-rw-r--r-- | src/os/file.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/os/file.go b/src/os/file.go index 9f247dc6e..de971fb79 100644 --- a/src/os/file.go +++ b/src/os/file.go @@ -145,12 +145,12 @@ const ( // 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 - Mode() FileMode // file mode bits + Name() string // base name of the file + Size() int64 // length in bytes for regular files; system-dependent for others + Mode() FileMode // file mode bits // ModTime() time.Time // modification time - IsDir() bool // abbreviation for Mode().IsDir() - Sys() interface{} // underlying data source (can return nil) + IsDir() bool // abbreviation for Mode().IsDir() + Sys() interface{} // underlying data source (can return nil) } // Stat is a stub, not yet implemented |