From cedac7eaa07d26667e6800c5ac96239d5ccf6ba8 Mon Sep 17 00:00:00 2001 From: AndreasHGK Date: Thu, 30 Jun 2022 17:50:04 +0200 Subject: [PATCH] os/path_windows.go: fix typo --- src/os/path_windows.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/path_windows.go b/src/os/path_windows.go index a96245f358..3356908a36 100644 --- a/src/os/path_windows.go +++ b/src/os/path_windows.go @@ -11,7 +11,7 @@ const ( // IsPathSeparator reports whether c is a directory separator character. func IsPathSeparator(c uint8) bool { - // NOTE: Windows accept / as path separator. + // NOTE: Windows accepts / as path separator. return c == '\\' || c == '/' }