From: Tormod Erevik Lea Date: Fri, 9 Sep 2016 14:41:30 +0000 (+0200) Subject: reflect: update location of vet tool in comment X-Git-Tag: go1.8beta1~1416 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f2f374d125312cd6f9c91581e85a80ee1f143cc1;p=gostls13.git reflect: update location of vet tool in comment Change-Id: Ic5160edbbca4a8ffc7c7e6246e34fae1978470fd Reviewed-on: https://go-review.googlesource.com/28912 Reviewed-by: Brad Fitzpatrick --- diff --git a/src/reflect/type.go b/src/reflect/type.go index 255ab38402..a3329e01c6 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.