From 317b1cbd02209ac9c6d9c5143aca1ac4548d6bba Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Wed, 26 Aug 2009 16:01:31 -0700 Subject: generate the unicode tables directly from web database after this CL, two more to come: 1) add an exhaustive test, probably as a variant of maketables 2) add ToUpper, ToLower, ToTitle and associated tests R=rsc DELTA=1578 (1007 added, 559 deleted, 12 changed) OCL=33902 CL=33907 --- src/pkg/regexp/regexp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pkg/regexp/regexp.go') diff --git a/src/pkg/regexp/regexp.go b/src/pkg/regexp/regexp.go index 15361a2f7..55c8a6325 100644 --- a/src/pkg/regexp/regexp.go +++ b/src/pkg/regexp/regexp.go @@ -68,7 +68,7 @@ func (c *common) setNext(i instr) { c._next = i } func (c *common) index() int { return c._index } func (c *common) setIndex(i int) { c._index = i } -// The representation of a compiled regular expression. +// Regexp is the representation of a compiled regular expression. // The public interface is entirely through methods. type Regexp struct { expr string; // the original expression -- cgit v1.2.3