exp/utf8string: Correct package name in error messages

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5969051
This commit is contained in:
Benny Siegert 2012-04-02 12:06:05 -04:00 committed by Russ Cox
parent 6727a2ad78
commit 512aeb305e
1 changed files with 2 additions and 2 deletions

View File

@ -199,5 +199,5 @@ func (s *String) At(i int) rune {
return r
}
var outOfRange = errors.New("utf8.String: index out of range")
var sliceOutOfRange = errors.New("utf8.String: slice index out of range")
var outOfRange = errors.New("utf8string: index out of range")
var sliceOutOfRange = errors.New("utf8string: slice index out of range")