commit 5b2a845a3d4ac65006109f36f9ef38108ddfe379 parent 31fd9efe2169c38209fc1699cc1f72120ce6f011 Author: Matsuda Kenji <info@mtkn.jp> Date: Fri, 8 Sep 2023 06:41:02 +0900 add comment Diffstat:
| M | file.go | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/file.go b/file.go @@ -6,8 +6,8 @@ import ( type File interface { fs.File - // I think a File should be identified by Qid.Path, but an os.File - // may be indexed by path. + // I think Files should be identified by Qid.Path, but os.Files + // are indexed by path. PathName() string // path from the root of the fs which this file belongs to. }