Hello golang-dev (cc: golang-dev@googlegroups.com), I'd like you to review this change to https://code.google.com/p/go/
*** Submitted as de954bd3fabe *** regexp: fix typo Fixes issue 2918. TBR=golang-dev CC=golang-dev http://codereview.appspot.com/5639062
LGTM rsc@golang.org writes: > Reviewers: golang-dev_googlegroups.com, > > Message: > Hello golang-dev (cc: golang-dev@googlegroups.com), > > I'd like you to review this change to > https://code.google.com/p/go/ > > > Description: > regexp: fix typo > > Fixes issue 2918. > > Please review this at http://codereview.appspot.com/5639062/ > > Affected files: > M src/pkg/regexp/regexp.go > > > Index: src/pkg/regexp/regexp.go > =================================================================== > --- a/src/pkg/regexp/regexp.go > +++ b/src/pkg/regexp/regexp.go > @@ -738,7 +738,7 @@ > > // ExpandString is like Expand but the template and source are strings. > // It appends to and returns a byte slice in order to give the calling > -// code control ovr allocation. > +// code control over allocation. > func (re *Regexp) ExpandString(dst []byte, template string, src > string, match []int) []byte { > return re.expand(dst, template, nil, src, match) > }