mirror of https://github.com/golang/go.git
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:
parent
6727a2ad78
commit
512aeb305e
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Reference in New Issue