From ae4f1c4c3ae2e0c36c5a2cfb2977acef1e87dd28 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Fri, 16 Sep 2011 15:07:13 -0700 Subject: [PATCH] reflect: fix comment R=r CC=golang-dev https://golang.org/cl/5039045 --- src/pkg/reflect/type.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0