]> Cypherpunks repositories - gostls13.git/commitdiff
io/fs: fix package reference in FS godoc
authorTobias Klauser <tklauser@distanz.ch>
Mon, 14 Dec 2020 10:14:05 +0000 (11:14 +0100)
committerTobias Klauser <tobias.klauser@gmail.com>
Mon, 14 Dec 2020 22:04:37 +0000 (22:04 +0000)
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 <tobias.klauser@gmail.com>
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
src/io/fs/fs.go

index d9f89fc6ee56bd85c2bb11cd5ff44bfb2edf4fa0..b691a860498a2136cf97a56905739555bf4946f5 100644 (file)
@@ -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.
        //