aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/unicode
diff options
context:
space:
mode:
authorPéter Surányi <speter.go1@gmail.com>2014-05-11 22:06:00 -0700
committerIan Lance Taylor <iant@golang.org>2014-05-11 22:06:00 -0700
commit176041e4c6184358bd73d1535335f3cdf5f0852d (patch)
tree2dd600e7c3eeaae025b52c87a7ce2575c38dec0d /src/pkg/unicode
parent2a7ab1616f861087c6da320f7de360949868384a (diff)
downloadgo-176041e4c6184358bd73d1535335f3cdf5f0852d.tar.xz
unicode: fix doc typo
LGTM=robert.hencke, iant R=golang-codereviews, robert.hencke, iant CC=golang-codereviews https://golang.org/cl/96230043
Diffstat (limited to 'src/pkg/unicode')
-rw-r--r--src/pkg/unicode/letter.go2
1 files changed, 1 insertions, 1 deletions
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'