]> Cypherpunks repositories - gostls13.git/commitdiff
go/ast: fix typo in comment
authorJosh Bleecher Snyder <josharian@gmail.com>
Fri, 18 Jul 2014 16:58:54 +0000 (09:58 -0700)
committerJosh Bleecher Snyder <josharian@gmail.com>
Fri, 18 Jul 2014 16:58:54 +0000 (09:58 -0700)
LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/111330043

src/pkg/go/ast/scope.go

index 8df5b2c6565bad9cc000fa18545d9fa1a8d3ac42..df1529d18198ce7e24122064c6ae53ef33c39ad0 100644 (file)
@@ -80,7 +80,7 @@ type Object struct {
        Name string      // declared name
        Decl interface{} // corresponding Field, XxxSpec, FuncDecl, LabeledStmt, AssignStmt, Scope; or nil
        Data interface{} // object-specific data; or nil
-       Type interface{} // place holder for type information; may be nil
+       Type interface{} // placeholder for type information; may be nil
 }
 
 // NewObj creates a new object of a given kind and name.