]> Cypherpunks repositories - gostls13.git/commitdiff
reflect: update location of vet tool in comment
authorTormod Erevik Lea <tormodlea@gmail.com>
Fri, 9 Sep 2016 14:41:30 +0000 (16:41 +0200)
committerBrad Fitzpatrick <bradfitz@golang.org>
Fri, 9 Sep 2016 15:02:46 +0000 (15:02 +0000)
Change-Id: Ic5160edbbca4a8ffc7c7e6246e34fae1978470fd
Reviewed-on: https://go-review.googlesource.com/28912
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/reflect/type.go

index 255ab38402dcf976b05cda4f278450e0f630499b..a3329e01c6ed279ebfd914ae62f02a2dedf868e7 100644 (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.