1
0
mirror of https://github.com/golang/go synced 2024-09-25 01:20:13 -06:00

vet: fix comment typo.

R=rsc, gri
CC=golang-dev
https://golang.org/cl/5620049
This commit is contained in:
Nigel Tao 2012-02-02 17:53:28 +11:00
parent a98faa9b6f
commit df7f34dd2b

View File

@ -29,7 +29,7 @@ type MethodSig struct {
// For example, a type might implement a Scan method that
// has nothing to do with fmt.Scanner, but we still want to check
// the methods that are intended to implement fmt.Scanner.
// To do that, the arguments that have a + prefix are treated as
// To do that, the arguments that have a = prefix are treated as
// signals that the canonical meaning is intended: if a Scan
// method doesn't have a fmt.ScanState as its first argument,
// we let it go. But if it does have a fmt.ScanState, then the