summaryrefslogtreecommitdiff
path: root/src/pkg/index
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2011-09-12 12:20:48 -0700
committerRobert Griesemer <gri@golang.org>2011-09-12 12:20:48 -0700
commit1a306b32d5cd95035bfdfa878224fa8f797f6273 (patch)
tree38fd58428334b375c75abdf599ab213835d22ce4 /src/pkg/index
parent9df1c92ebfde270b191ee030be2c16eae3b4c1c7 (diff)
downloadgo-1a306b32d5cd95035bfdfa878224fa8f797f6273.tar.gz
godoc, suffixarray: switch to exp/regexp
R=rsc CC=golang-dev http://codereview.appspot.com/4983058
Diffstat (limited to 'src/pkg/index')
-rw-r--r--src/pkg/index/suffixarray/suffixarray.go2
-rw-r--r--src/pkg/index/suffixarray/suffixarray_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/index/suffixarray/suffixarray.go b/src/pkg/index/suffixarray/suffixarray.go
index 82e98d2ef..c78de854d 100644
--- a/src/pkg/index/suffixarray/suffixarray.go
+++ b/src/pkg/index/suffixarray/suffixarray.go
@@ -18,7 +18,7 @@ package suffixarray
import (
"bytes"
- "regexp"
+ "exp/regexp"
"sort"
)
diff --git a/src/pkg/index/suffixarray/suffixarray_test.go b/src/pkg/index/suffixarray/suffixarray_test.go
index 023748500..d292356db 100644
--- a/src/pkg/index/suffixarray/suffixarray_test.go
+++ b/src/pkg/index/suffixarray/suffixarray_test.go
@@ -6,7 +6,7 @@ package suffixarray
import (
"bytes"
- "regexp"
+ "exp/regexp"
"sort"
"strings"
"testing"