From: Robert Griesemer Date: Fri, 16 Sep 2011 22:07:13 +0000 (-0700) Subject: reflect: fix comment X-Git-Tag: weekly.2011-09-21~57 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=ae4f1c4c3ae2e0c36c5a2cfb2977acef1e87dd28;p=gostls13.git reflect: fix comment R=r CC=golang-dev https://golang.org/cl/5039045 --- diff --git a/src/pkg/reflect/type.go b/src/pkg/reflect/type.go index 7416329251..3630069bba 100644 --- a/src/pkg/reflect/type.go +++ b/src/pkg/reflect/type.go @@ -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