From: Josh Bleecher Snyder Date: Fri, 18 Jul 2014 16:58:54 +0000 (-0700) Subject: go/ast: fix typo in comment X-Git-Tag: go1.4beta1~1061 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=6089fc767cb2c5892fd077349e5c03cf818b1639;p=gostls13.git go/ast: fix typo in comment LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/111330043 --- diff --git a/src/pkg/go/ast/scope.go b/src/pkg/go/ast/scope.go index 8df5b2c656..df1529d181 100644 --- a/src/pkg/go/ast/scope.go +++ b/src/pkg/go/ast/scope.go @@ -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.