1
0
mirror of https://github.com/golang/go synced 2024-11-26 16:46:58 -07:00

testing: fix typo mistake

Change-Id: I561640768c43491288e7f5bd1a34247787793dab
Reviewed-on: https://go-review.googlesource.com/109935
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Zhou Peng 2018-04-27 13:26:21 +00:00 committed by Brad Fitzpatrick
parent e656aebb5b
commit 1f56499d4d

View File

@ -110,7 +110,7 @@ func splitRegexp(s string) []string {
}
// unique creates a unique name for the given parent and subname by affixing it
// with one ore more counts, if necessary.
// with one or more counts, if necessary.
func (m *matcher) unique(parent, subname string) string {
name := fmt.Sprintf("%s/%s", parent, subname)
empty := subname == ""