From 5957f914e21d52f540116153bf72d3ec263ab825 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 8 Feb 2012 08:59:59 -0500 Subject: [PATCH] regexp: fix typo Fixes #2918. TBR=golang-dev CC=golang-dev https://golang.org/cl/5639062 --- src/pkg/regexp/regexp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pkg/regexp/regexp.go b/src/pkg/regexp/regexp.go index 28c903e7b3..d12ff02759 100644 --- a/src/pkg/regexp/regexp.go +++ b/src/pkg/regexp/regexp.go @@ -738,7 +738,7 @@ func (re *Regexp) Expand(dst []byte, template []byte, src []byte, match []int) [ // 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) } -- 2.50.0