From 4bc2f4e34b02ede9732797ceec917d4ed62abd82 Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Mon, 21 Apr 2014 16:35:40 -0700 Subject: [PATCH] go.tools/go/types: fix doc comment LGTM=adonovan R=adonovan CC=golang-codereviews https://golang.org/cl/90100043 --- go/types/api.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/go/types/api.go b/go/types/api.go index 37ac3d08..d7081f08 100644 --- a/go/types/api.go +++ b/go/types/api.go @@ -144,9 +144,8 @@ type Info struct { // Defs maps identifiers to the objects they define (including // package names, dots "." of dot-imports, and blank "_" identifiers). // For identifiers that do not denote objects (e.g., the package name - // in package clauses, blank identifiers on the lhs of assignments, or - // symbolic variables t in t := x.(type) of type switch headers), the - // corresponding objects are nil. + // in package clauses, or symbolic variables t in t := x.(type) of + // type switch headers), the corresponding objects are nil. // // For an anonymous field, Defs returns the field *Var it defines. //