aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2012-06-13 16:24:32 -0400
committerRob Pike <r@golang.org>2012-06-13 16:24:32 -0400
commitc558dc787de7609911aead0063aea32d2931409d (patch)
tree74fd53bce606fb5ae5b51619630317bd193a1b3b
parent5fc093e3c08f5f19531d5a1efcc088c1f21dc1ea (diff)
downloadgo-c558dc787de7609911aead0063aea32d2931409d.tar.gz
go-c558dc787de7609911aead0063aea32d2931409d.zip
[release-branch.go1] regexp: fix a couple of bugs in the documentation
««« backport 97295af6ee9b regexp: fix a couple of bugs in the documentation Byte slices are not strings. Fixes #3687. R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/6257074 »»»
-rw-r--r--src/pkg/regexp/regexp.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/regexp/regexp.go b/src/pkg/regexp/regexp.go
index 54c53776cf..87e6b1c61e 100644
--- a/src/pkg/regexp/regexp.go
+++ b/src/pkg/regexp/regexp.go
@@ -512,7 +512,7 @@ func (re *Regexp) replaceAll(bsrc []byte, src string, nmatch int, repl func(dst
}
// ReplaceAll returns a copy of src, replacing matches of the Regexp
-// with the replacement string repl. Inside repl, $ signs are interpreted as
+// with the replacement text repl. Inside repl, $ signs are interpreted as
// in Expand, so for instance $1 represents the text of the first submatch.
func (re *Regexp) ReplaceAll(src, repl []byte) []byte {
n := 2
@@ -726,7 +726,7 @@ func (re *Regexp) FindSubmatch(b []byte) [][]byte {
// the submatch with the corresponding index; other names refer to
// capturing parentheses named with the (?P<name>...) syntax. A
// reference to an out of range or unmatched index or a name that is not
-// present in the regular expression is replaced with an empty string.
+// present in the regular expression is replaced with an empty slice.
//
// In the $name form, name is taken to be as long as possible: $1x is
// equivalent to ${1x}, not ${1}x, and, $10 is equivalent to ${10}, not ${1}0.