From: Vladimir Kovpak Date: Fri, 16 Nov 2018 14:23:17 +0000 (+0000) Subject: reflect: add comment for String method of Kind struct X-Git-Tag: go1.12beta1~337 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9ffd5f31dcb95189eeb5c1754291df7b477d5dda;p=gostls13.git reflect: add comment for String method of Kind struct On reflect documentation page only this function doesn't have description, this commit add simple description. Change-Id: Idcda89ddd1f6fdd1938c4030e89ebdc186255ce6 GitHub-Last-Rev: 1553b834bb4f7a49efc7ff81763a255bc51bbf17 GitHub-Pull-Request: golang/go#28818 Reviewed-on: https://go-review.googlesource.com/c/149721 Reviewed-by: Ian Lance Taylor --- diff --git a/src/reflect/type.go b/src/reflect/type.go index 5bbab79fc0..f48f9cf09d 100644 --- a/src/reflect/type.go +++ b/src/reflect/type.go @@ -593,6 +593,7 @@ const ( kindMask = (1 << 5) - 1 ) +// String returns the name of k. func (k Kind) String() string { if int(k) < len(kindNames) { return kindNames[k]