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 == '/' }