From 490af4fd83132c6ab98de702dd9c0051820cb49c Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Tue, 17 Feb 2015 08:21:14 +1100 Subject: [PATCH] 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 --- src/unicode/graphic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }