From: Andrey Mirtchovski Date: Wed, 9 Jan 2013 19:07:13 +0000 (-0800) Subject: utf8: fix typo. X-Git-Tag: go1.1rc2~1443 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=be36ab339f5f11f2daaec29e46e9e1ce25c74688;p=gostls13.git utf8: fix typo. R=golang-dev, iant CC=golang-dev https://golang.org/cl/7063056 --- diff --git a/src/pkg/unicode/utf8/utf8.go b/src/pkg/unicode/utf8/utf8.go index ad23577740..93d0be5e0c 100644 --- a/src/pkg/unicode/utf8/utf8.go +++ b/src/pkg/unicode/utf8/utf8.go @@ -400,7 +400,7 @@ func Valid(p []byte) bool { } else { _, size := DecodeRune(p[i:]) if size == 1 { - // All valid runes of size of 1 (those + // All valid runes of size 1 (those // below RuneSelf) were handled above. // This must be a RuneError. return false