]> Cypherpunks repositories - gostls13.git/commitdiff
testing: fix typo mistake
authorZhou Peng <p@ctriple.cn>
Fri, 27 Apr 2018 13:26:21 +0000 (13:26 +0000)
committerBrad Fitzpatrick <bradfitz@golang.org>
Fri, 27 Apr 2018 13:29:12 +0000 (13:29 +0000)
Change-Id: I561640768c43491288e7f5bd1a34247787793dab
Reviewed-on: https://go-review.googlesource.com/109935
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/testing/match.go

index 89e30d01a75da74ee72ff5f907fa4b0b8becdb16..b18c6e7f389ac64bfa10056ac958f69c50003eb9 100644 (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 == ""