regexp: fix incorrect name in Match doc comment

Change-Id: I628aad9a3abe9cc0c3233f476960e53bd291eca9
Reviewed-on: https://go-review.googlesource.com/135235
Reviewed-by: Ralph Corderoy <ralph@inputplus.co.uk>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
diff --git a/src/regexp/regexp.go b/src/regexp/regexp.go
index 61ed9c5..89bb975 100644
--- a/src/regexp/regexp.go
+++ b/src/regexp/regexp.go
@@ -469,7 +469,7 @@
 	return re.MatchString(s), nil
 }
 
-// MatchString reports whether the byte slice b
+// Match reports whether the byte slice b
 // contains any match of the regular expression pattern.
 // More complicated queries need to use Compile and the full Regexp interface.
 func Match(pattern string, b []byte) (matched bool, err error) {