From: Péter Surányi Date: Mon, 12 May 2014 05:06:00 +0000 (-0700) Subject: unicode: fix doc typo X-Git-Tag: go1.3beta2~99 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=176041e4c6184358bd73d1535335f3cdf5f0852d;p=gostls13.git unicode: fix doc typo LGTM=robert.hencke, iant R=golang-codereviews, robert.hencke, iant CC=golang-codereviews https://golang.org/cl/96230043 --- diff --git a/src/pkg/unicode/letter.go b/src/pkg/unicode/letter.go index 3b389e93f1..977bd2b3b0 100644 --- a/src/pkg/unicode/letter.go +++ b/src/pkg/unicode/letter.go @@ -316,7 +316,7 @@ type foldPair struct { // SimpleFold iterates over Unicode code points equivalent under // the Unicode-defined simple case folding. Among the code points // equivalent to rune (including rune itself), SimpleFold returns the -// smallest rune >= r if one exists, or else the smallest rune >= 0. +// smallest rune > r if one exists, or else the smallest rune >= 0. // // For example: // SimpleFold('A') = 'a'