From: Scott Lawrence Date: Fri, 13 Jan 2012 23:36:54 +0000 (-0800) Subject: go/ast: fix typo X-Git-Tag: weekly.2012-01-15~17 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a08c1960dd8d5915029bf9f07fffd5d8842cd839;p=gostls13.git go/ast: fix typo R=golang-dev, r, bradfitz CC=golang-dev https://golang.org/cl/5543056 --- diff --git a/src/pkg/go/ast/filter.go b/src/pkg/go/ast/filter.go index b3f3f74856..4a89b89096 100644 --- a/src/pkg/go/ast/filter.go +++ b/src/pkg/go/ast/filter.go @@ -23,7 +23,7 @@ func exportFilter(name string) bool { // body) are removed. Non-exported fields and methods of exported types are // stripped. The File.Comments list is not changed. // -// FileExports returns true if there are exported declarationa; +// FileExports returns true if there are exported declarations; // it returns false otherwise. // func FileExports(src *File) bool {