src, misc: applied gofmt -s -w

Pending CL 113120043.

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/112290043
This commit is contained in:
Robert Griesemer 2014-07-16 16:29:51 -07:00
parent 8d504c4e97
commit 8a23c0021e
16 changed files with 27 additions and 27 deletions

View file

@ -1016,7 +1016,7 @@ func forFieldList(fl *ast.FieldList, fn func(int, ast.Expr)) {
fn(i, r.Type)
i++
} else {
for _ = range r.Names {
for range r.Names {
fn(i, r.Type)
i++
}