From 278b9a8a4a905ca91feb145b949303bd91a2a154 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 14 Dec 2020 11:14:05 +0100 Subject: [PATCH] io/fs: fix package reference in FS godoc Reported by Ben on golang-dev https://groups.google.com/g/golang-dev/c/gsoj5Vv15j0/m/kZxzYUdnAQAJ Change-Id: Ic2c9600b831592ad54036b816138760b7fbb737a Reviewed-on: https://go-review.googlesource.com/c/go/+/277377 Trust: Tobias Klauser Run-TryBot: Tobias Klauser TryBot-Result: Go Bot Reviewed-by: Russ Cox --- src/io/fs/fs.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/io/fs/fs.go b/src/io/fs/fs.go index d9f89fc6ee..b691a86049 100644 --- a/src/io/fs/fs.go +++ b/src/io/fs/fs.go @@ -16,8 +16,7 @@ import ( // // The FS interface is the minimum implementation required of the file system. // A file system may implement additional interfaces, -// such as fsutil.ReadFileFS, to provide additional or optimized functionality. -// See io/fsutil for details. +// such as ReadFileFS, to provide additional or optimized functionality. type FS interface { // Open opens the named file. // -- 2.50.0