From: Tobias Klauser Date: Tue, 16 Feb 2021 09:36:10 +0000 (+0100) Subject: ios/fs: mention f.dir in (*subFS).fixErr godoc X-Git-Tag: go1.17beta1~1436 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=08543f071520074854f280ad789cf79c5a00af7d;p=gostls13.git ios/fs: mention f.dir in (*subFS).fixErr godoc There is no dir parameter to (f *subFS).fixErr. Change-Id: I49e42bac5e102cfab0d289658d9871429cfec515 Reviewed-on: https://go-review.googlesource.com/c/go/+/292389 Trust: Tobias Klauser Run-TryBot: Tobias Klauser TryBot-Result: Go Bot Reviewed-by: Ian Lance Taylor --- diff --git a/src/io/fs/sub.go b/src/io/fs/sub.go index 64cdffe6de..d689b9e2bc 100644 --- a/src/io/fs/sub.go +++ b/src/io/fs/sub.go @@ -68,7 +68,7 @@ func (f *subFS) shorten(name string) (rel string, ok bool) { return "", false } -// fixErr shortens any reported names in PathErrors by stripping dir. +// fixErr shortens any reported names in PathErrors by stripping f.dir. func (f *subFS) fixErr(err error) error { if e, ok := err.(*PathError); ok { if short, ok := f.shorten(e.Path); ok {