0
1
mirror of https://github.com/golang/go synced 2025-09-20 07:59:27 +00:00

cmd/go/internal/modcmd: fix typo in comment

Change-Id: I331c46083e9608227615183ba7e25f6299669341
GitHub-Last-Rev: 0cb78ae1c1
GitHub-Pull-Request: golang/go#66305
Reviewed-on: https://go-review.googlesource.com/c/go/+/571536
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Ian Lance Taylor <iant@google.com>
Auto-Submit: Ian Lance Taylor <iant@google.com>
Reviewed-by: Sam Thanawalla <samthanawalla@google.com>
This commit is contained in:
guoguangwu
2024-03-14 03:16:23 +00:00
committed by Gopher Robot
parent 303aa921c5
commit 1e20af021f

View File

@@ -495,7 +495,7 @@ func copyDir(dst, src string, match func(dir string, info fs.DirEntry) bool, cop
}
// checkPathCollisions will fail if case-insensitive collisions are present.
// The reason why we do this check in go mod vendor is to keep consistentcy
// The reason why we do this check in go mod vendor is to keep consistency
// with go build. If modifying, consider changing load() in
// src/cmd/go/internal/load/pkg.go
func checkPathCollisions(modpkgs map[module.Version][]string) {