1
0
mirror of https://github.com/golang/go synced 2024-10-01 03:28:32 -06:00

go.tools/go/types: fix doc comment

LGTM=adonovan
R=adonovan
CC=golang-codereviews
https://golang.org/cl/90100043
This commit is contained in:
Robert Griesemer 2014-04-21 16:35:40 -07:00
parent 8eccac8f9a
commit 4bc2f4e34b

View File

@ -144,9 +144,8 @@ type Info struct {
// Defs maps identifiers to the objects they define (including // Defs maps identifiers to the objects they define (including
// package names, dots "." of dot-imports, and blank "_" identifiers). // package names, dots "." of dot-imports, and blank "_" identifiers).
// For identifiers that do not denote objects (e.g., the package name // For identifiers that do not denote objects (e.g., the package name
// in package clauses, blank identifiers on the lhs of assignments, or // in package clauses, or symbolic variables t in t := x.(type) of
// symbolic variables t in t := x.(type) of type switch headers), the // type switch headers), the corresponding objects are nil.
// corresponding objects are nil.
// //
// For an anonymous field, Defs returns the field *Var it defines. // For an anonymous field, Defs returns the field *Var it defines.
// //