aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Lawrence <bytbox@gmail.com>2012-01-13 15:36:54 -0800
committerRob Pike <r@golang.org>2012-01-13 15:36:54 -0800
commita08c1960dd8d5915029bf9f07fffd5d8842cd839 (patch)
treeba2f74e637924ac345fd9684cdc6f70252533486
parent1c441e259f66bc2594cb8b0a95bf6cc0847e2bd8 (diff)
downloadgo-a08c1960dd8d5915029bf9f07fffd5d8842cd839.tar.gz
go-a08c1960dd8d5915029bf9f07fffd5d8842cd839.zip
go/ast: fix typo
R=golang-dev, r, bradfitz CC=golang-dev https://golang.org/cl/5543056
-rw-r--r--src/pkg/go/ast/filter.go2
1 files changed, 1 insertions, 1 deletions
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 {