From: Nigel Tao Date: Thu, 2 Feb 2012 06:53:28 +0000 (+1100) Subject: vet: fix comment typo. X-Git-Tag: weekly.2012-02-07~132 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=df7f34dd2be6f7b9c387ed45a87932e9313cd6f2;p=gostls13.git vet: fix comment typo. R=rsc, gri CC=golang-dev https://golang.org/cl/5620049 --- diff --git a/src/cmd/vet/method.go b/src/cmd/vet/method.go index 6bf5e2a18f..41cb40ff9e 100644 --- a/src/cmd/vet/method.go +++ b/src/cmd/vet/method.go @@ -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