From 36f37f8f5c8169a4482a16bcccc34b26413e704c Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Mon, 14 Jan 2019 11:24:28 -0500 Subject: [PATCH] go/packages: rename Illtyped to IllTyped in docs Fix the field name in docs to have the correct case, as seen at https://godoc.org/golang.org/x/tools/go/packages#Package.IllTyped. Change-Id: I3184c2fc5f9c4641a61dbd2af6a11309e9f284ea Reviewed-on: https://go-review.googlesource.com/c/157797 Reviewed-by: Michael Matloob --- go/packages/packages.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/packages/packages.go b/go/packages/packages.go index 15927f1d38..e69ddfcb4c 100644 --- a/go/packages/packages.go +++ b/go/packages/packages.go @@ -52,7 +52,7 @@ const ( // LoadAllSyntax adds typed syntax trees for the packages matching the patterns // and all dependencies. - // Package fields added: Types, Fset, Illtyped, Syntax, and TypesInfo, + // Package fields added: Types, Fset, IllTyped, Syntax, and TypesInfo, // for all packages in the import graph. LoadAllSyntax )