From a08c1960dd8d5915029bf9f07fffd5d8842cd839 Mon Sep 17 00:00:00 2001 From: Scott Lawrence Date: Fri, 13 Jan 2012 15:36:54 -0800 Subject: [PATCH] go/ast: fix typo R=golang-dev, r, bradfitz CC=golang-dev https://golang.org/cl/5543056 --- src/pkg/go/ast/filter.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {