summaryrefslogtreecommitdiff
path: root/libgo/go/go/ast/scope.go
diff options
context:
space:
mode:
Diffstat (limited to 'libgo/go/go/ast/scope.go')
-rw-r--r--libgo/go/go/ast/scope.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/libgo/go/go/ast/scope.go b/libgo/go/go/ast/scope.go
index 8df5b2c656..df1529d181 100644
--- a/libgo/go/go/ast/scope.go
+++ b/libgo/go/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.