]> Cypherpunks repositories - gostls13.git/commitdiff
reflect: fix comment
authorRobert Griesemer <gri@golang.org>
Fri, 16 Sep 2011 22:07:13 +0000 (15:07 -0700)
committerRobert Griesemer <gri@golang.org>
Fri, 16 Sep 2011 22:07:13 +0000 (15:07 -0700)
R=r
CC=golang-dev
https://golang.org/cl/5039045

src/pkg/reflect/type.go

index 74163292515ee64534517d6546650c9e410e94af..3630069bba2837067049be3717a901aad404f66a 100644 (file)
@@ -716,7 +716,7 @@ type StructTag string
 // Get returns the value associated with key in the tag string.
 // If there is no such key in the tag, Get returns the empty string.
 // If the tag does not have the conventional format, the value
-// returned by Get is unspecified
+// returned by Get is unspecified.
 func (tag StructTag) Get(key string) string {
        for tag != "" {
                // skip leading space