From 8e2f667cd974754f3b4e135390ccd04f4408d293 Mon Sep 17 00:00:00 2001 From: Mauri de Souza Meneguzzo Date: Thu, 16 Nov 2023 18:01:33 -0300 Subject: [PATCH] fix http.Dir docs --- src/net/http/fs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/http/fs.go b/src/net/http/fs.go index becefbdfb5..0c633512a3 100644 --- a/src/net/http/fs.go +++ b/src/net/http/fs.go @@ -29,7 +29,7 @@ import ( // specific directory tree. // // While the FileSystem.Open method takes '/'-separated paths, a Dir's string -// value is a filename on the native file system, not a URL, so it is separated +// value is a directory path on the native file system, not a URL, so it is separated // by filepath.Separator, which isn't necessarily '/'. // // Note that Dir could expose sensitive files and directories. Dir will follow