From: Alexei Sholik Date: Sun, 7 Apr 2013 23:50:23 +0000 (-0700) Subject: go/ast: fix typo in Fprint documentation X-Git-Tag: go1.1rc2~149 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=f4de042e2c22dcd64c667e3196d27a8b551410a4;p=gostls13.git go/ast: fix typo in Fprint documentation R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/8499043 --- diff --git a/src/pkg/go/ast/print.go b/src/pkg/go/ast/print.go index 4a1ce480f4..f15dc11dc0 100644 --- a/src/pkg/go/ast/print.go +++ b/src/pkg/go/ast/print.go @@ -34,7 +34,7 @@ func NotNilFilter(_ string, v reflect.Value) bool { // // A non-nil FieldFilter f may be provided to control the output: // struct fields for which f(fieldname, fieldvalue) is true are -// are printed; all others are filtered from the output. Unexported +// printed; all others are filtered from the output. Unexported // struct fields are never printed. // func Fprint(w io.Writer, fset *token.FileSet, x interface{}, f FieldFilter) (err error) {