From: Oling Cat Date: Tue, 19 Mar 2013 18:47:41 +0000 (-0400) Subject: unicode: modify a comment to the convention format. X-Git-Tag: go1.1rc2~444 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=d8714ca49f974d6117b443bfe90c0cc3511dc138;p=gostls13.git unicode: modify a comment to the convention format. R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/7869043 --- diff --git a/src/pkg/unicode/letter.go b/src/pkg/unicode/letter.go index 8d56363df9..fadaa57d8b 100644 --- a/src/pkg/unicode/letter.go +++ b/src/pkg/unicode/letter.go @@ -151,7 +151,7 @@ func is32(ranges []Range32, r uint32) bool { return false } -// Is tests whether rune is in the specified table of ranges. +// Is reports whether the rune is in the specified table of ranges. func Is(rangeTab *RangeTable, r rune) bool { r16 := rangeTab.R16 if len(r16) > 0 && r <= rune(r16[len(r16)-1].Hi) {