From: Robert Griesemer Date: Tue, 30 Mar 2010 01:41:55 +0000 (-0700) Subject: go/printer: fix a comment X-Git-Tag: weekly.2010-03-30~19 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bc32dd9ec4b81aa6b53da2a0b9b6cc6f8d3a8e92;p=gostls13.git go/printer: fix a comment R=rsc CC=golang-dev https://golang.org/cl/826042 --- diff --git a/src/pkg/go/printer/printer.go b/src/pkg/go/printer/printer.go index d9df2e819d..5a12c6edb5 100644 --- a/src/pkg/go/printer/printer.go +++ b/src/pkg/go/printer/printer.go @@ -964,7 +964,7 @@ type Config struct { // Fprint "pretty-prints" an AST node to output and returns the number // of bytes written and an error (if any) for a given configuration cfg. // The node type must be *ast.File, or assignment-compatible to ast.Expr, -// ast.Decl, or ast.Stmt. +// ast.Decl, ast.Spec, or ast.Stmt. // func (cfg *Config) Fprint(output io.Writer, node interface{}) (int, os.Error) { // redirect output through a trimmer to eliminate trailing whitespace