diff --git a/src/reflect/type.go b/src/reflect/type.go index 255ab38402d..a3329e01c6e 100644 --- a/src/reflect/type.go +++ b/src/reflect/type.go @@ -1147,7 +1147,7 @@ func (tag StructTag) Get(key string) string { // the value returned by Lookup is unspecified. func (tag StructTag) Lookup(key string) (value string, ok bool) { // When modifying this code, also update the validateStructTag code - // in golang.org/x/tools/cmd/vet/structtag.go. + // in cmd/vet/structtag.go. for tag != "" { // Skip leading space.