From daead99c02019c22d73e06180e2ecadc17f2e999 Mon Sep 17 00:00:00 2001 From: Kir Kolyshkin Date: Mon, 23 Sep 2024 13:07:15 -0700 Subject: [PATCH] Remove osVFS methods documentation These methods are not public, and their docstrings are copies of those from the VFS interface methods. Signed-off-by: Kir Kolyshkin --- vfs.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/vfs.go b/vfs.go index 6e27c7d..1932eb3 100644 --- a/vfs.go +++ b/vfs.go @@ -30,12 +30,6 @@ type VFS interface { // module. type osVFS struct{} -// Lstat returns a FileInfo describing the named file. If the file is a -// symbolic link, the returned FileInfo describes the symbolic link. Lstat -// makes no attempt to follow the link. These semantics are identical to -// os.Lstat. func (o osVFS) Lstat(name string) (os.FileInfo, error) { return os.Lstat(name) } -// Readlink returns the destination of the named symbolic link. These -// semantics are identical to os.Readlink. func (o osVFS) Readlink(name string) (string, error) { return os.Readlink(name) }