1
0
mirror of https://github.com/golang/go synced 2024-11-26 04:47:57 -07:00

go/ast: fix typo in Fprint documentation

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/8499043
This commit is contained in:
Alexei Sholik 2013-04-07 16:50:23 -07:00 committed by Brad Fitzpatrick
parent 2be84a8c2b
commit f4de042e2c

View 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) {