From: Vega Garcia Luis Alfonso Date: Mon, 28 Jan 2013 05:36:47 +0000 (-0800) Subject: go/ast: Fix typo for the godoc of ObjKind X-Git-Tag: go1.1rc2~1283 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=1da07a783ee31a25980f13d7d483be8afe70da95;p=gostls13.git go/ast: Fix typo for the godoc of ObjKind R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7232045 --- diff --git a/src/pkg/go/ast/scope.go b/src/pkg/go/ast/scope.go index c32369a518..8df5b2c656 100644 --- a/src/pkg/go/ast/scope.go +++ b/src/pkg/go/ast/scope.go @@ -135,7 +135,7 @@ func (obj *Object) Pos() token.Pos { return token.NoPos } -// ObKind describes what an object represents. +// ObjKind describes what an object represents. type ObjKind int // The list of possible Object kinds.