1
0
mirror of https://github.com/golang/go synced 2024-11-23 02:20:03 -07:00

reflect: update location of vet tool in comment

Change-Id: Ic5160edbbca4a8ffc7c7e6246e34fae1978470fd
Reviewed-on: https://go-review.googlesource.com/28912
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Tormod Erevik Lea 2016-09-09 16:41:30 +02:00 committed by Brad Fitzpatrick
parent 428c349552
commit f2f374d125

View File

@ -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.