From: Ian Lance Taylor Date: Tue, 21 Jul 2015 21:05:59 +0000 (-0700) Subject: cmd/go: fix typo in comment X-Git-Tag: go1.5beta3~130 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c97b49976d9251701ec6678689c794a352b9f890;p=gostls13.git cmd/go: fix typo in comment Change-Id: I3d5e46d376953fbdd21ce8c161214eaed6378d84 Reviewed-on: https://go-review.googlesource.com/12490 Reviewed-by: Andrew Gerrand --- diff --git a/src/cmd/go/pkg.go b/src/cmd/go/pkg.go index ae9744218d..e6c17036fe 100644 --- a/src/cmd/go/pkg.go +++ b/src/cmd/go/pkg.go @@ -359,7 +359,7 @@ func isDir(path string) bool { // If parent is x/y/z, then path might expand to x/y/z/vendor/path, x/y/vendor/path, // x/vendor/path, vendor/path, or else stay x/y/z if none of those exist. // vendoredImportPath returns the expanded path or, if no expansion is found, the original. -// If no epxansion is found, vendoredImportPath also returns a list of vendor directories +// If no expansion is found, vendoredImportPath also returns a list of vendor directories // it searched along the way, to help prepare a useful error message should path turn // out not to exist. func vendoredImportPath(parent *Package, path string) (found string, searched []string) {