From 89af77deef7e554dff5ca21ff2c2aaf0a2d253ac Mon Sep 17 00:00:00 2001 From: MaineK00n Date: Wed, 14 May 2025 21:44:19 +0000 Subject: [PATCH] internal/filepathlite: fix comment fix typo Change-Id: I46f0b052615d388a852439e63542b43e2ca62b7e GitHub-Last-Rev: 96ac66c0362c5c544249cf465c528a924112fa76 GitHub-Pull-Request: golang/go#73725 Reviewed-on: https://go-review.googlesource.com/c/go/+/672955 Reviewed-by: Dmitri Shuralyov Reviewed-by: David Chase Auto-Submit: Sean Liao Reviewed-by: Sean Liao LUCI-TryBot-Result: Go LUCI --- src/internal/filepathlite/path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/filepathlite/path.go b/src/internal/filepathlite/path.go index e3daa447d9..4a3729832f 100644 --- a/src/internal/filepathlite/path.go +++ b/src/internal/filepathlite/path.go @@ -180,7 +180,7 @@ func ToSlash(path string) string { return replaceStringByte(path, Separator, '/') } -// FromSlash is filepath.ToSlash. +// FromSlash is filepath.FromSlash. func FromSlash(path string) string { if Separator == '/' { return path -- 2.51.0