From: Aaron Jacobs Date: Mon, 16 Feb 2015 21:21:14 +0000 (+1100) Subject: unicode: Fixed an out of date comment (MaxLatin1, not Latin1Max). X-Git-Tag: go1.5beta1~1976 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=490af4fd83132c6ab98de702dd9c0051820cb49c;p=gostls13.git unicode: Fixed an out of date comment (MaxLatin1, not Latin1Max). Change-Id: I3ca878e9685f650a9ff02aaac0e2e3cca89634c6 Reviewed-on: https://go-review.googlesource.com/4970 Reviewed-by: Minux Ma --- diff --git a/src/unicode/graphic.go b/src/unicode/graphic.go index ba90b4e518..81eae3e762 100644 --- a/src/unicode/graphic.go +++ b/src/unicode/graphic.go @@ -82,7 +82,7 @@ func IsControl(r rune) bool { if uint32(r) <= MaxLatin1 { return properties[uint8(r)]&pC != 0 } - // All control characters are < Latin1Max. + // All control characters are < MaxLatin1. return false }