diff options
author | Rob Pike <r@golang.org> | 2009-08-26 16:01:31 -0700 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2009-08-26 16:01:31 -0700 |
commit | 317b1cbd02209ac9c6d9c5143aca1ac4548d6bba (patch) | |
tree | 60872116ae240de0f6e18b9b5666230bb6aeca02 /src/pkg/regexp/regexp.go | |
parent | 0e3003b464a4f9d9ba1ec329f8d4b0589e0a7259 (diff) | |
download | golang-317b1cbd02209ac9c6d9c5143aca1ac4548d6bba.tar.gz |
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
Diffstat (limited to 'src/pkg/regexp/regexp.go')
-rw-r--r-- | src/pkg/regexp/regexp.go | 2 |
1 files changed, 1 insertions, 1 deletions
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 |