]> Cypherpunks repositories - gostls13.git/commitdiff
go/ast: fix typo in Fprint documentation
authorAlexei Sholik <alcosholik@gmail.com>
Sun, 7 Apr 2013 23:50:23 +0000 (16:50 -0700)
committerBrad Fitzpatrick <bradfitz@golang.org>
Sun, 7 Apr 2013 23:50:23 +0000 (16:50 -0700)
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/8499043

src/pkg/go/ast/print.go

index 4a1ce480f42cd6ada35e1055f35166cdc36224cb..f15dc11dc055f6592d5fd74dafbf7da815986cc0 100644 (file)
@@ -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) {