]> Cypherpunks repositories - gostls13.git/commitdiff
io/fs: minor corrections to Glob doc
authorIan Lance Taylor <iant@golang.org>
Thu, 7 Jan 2021 00:30:41 +0000 (16:30 -0800)
committerRuss Cox <rsc@golang.org>
Fri, 8 Jan 2021 15:41:36 +0000 (15:41 +0000)
The documentation for Glob was copied from filepath.Glob, and needs a bit
of tweaking: paths are not rooted at slash; the separator is always '/'.

Fixes #43537

Change-Id: Id64daa137e2762b66a82a5b9e60bbe603f4e2f5c
Reviewed-on: https://go-review.googlesource.com/c/go/+/282173
Trust: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Russ Cox <rsc@golang.org>
src/io/fs/glob.go

index 59bd1939d7707ebe31039a88ccab30383638e41d..549f217542967500bf6f8a96599a234da49bb13a 100644 (file)
@@ -22,7 +22,7 @@ type GlobFS interface {
 // Glob returns the names of all files matching pattern or nil
 // if there is no matching file. The syntax of patterns is the same
 // as in path.Match. The pattern may describe hierarchical names such as
-// /usr/*/bin/ed (assuming the Separator is '/').
+// usr/*/bin/ed.
 //
 // Glob ignores file system errors such as I/O errors reading directories.
 // The only possible returned error is path.ErrBadPattern, reporting that