From 6089fc767cb2c5892fd077349e5c03cf818b1639 Mon Sep 17 00:00:00 2001 From: Josh Bleecher Snyder Date: Fri, 18 Jul 2014 09:58:54 -0700 Subject: [PATCH] go/ast: fix typo in comment LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/111330043 --- src/pkg/go/ast/scope.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.48.1