From 6c8d5125d3fb170744b3c6813c977130bcb83622 Mon Sep 17 00:00:00 2001 From: griesemer Date: Mon, 18 Sep 2017 11:49:47 +0200 Subject: [PATCH] go/types, constant: remove superfluous import comment The comment was a left-over from the long-past move of these two packages from x/tools to the std lib. Fixes #21791. Change-Id: I65cbebf479e609be0204b58edb6506c6403aec9b Reviewed-on: https://go-review.googlesource.com/64250 Run-TryBot: Robert Griesemer TryBot-Result: Gobot Gobot Reviewed-by: Alan Donovan --- src/go/constant/value.go | 2 +- src/go/types/api.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/go/constant/value.go b/src/go/constant/value.go index 5474e73e24..513151a38f 100644 --- a/src/go/constant/value.go +++ b/src/go/constant/value.go @@ -10,7 +10,7 @@ // values produce unknown values unless specified // otherwise. // -package constant // import "go/constant" +package constant import ( "fmt" diff --git a/src/go/types/api.go b/src/go/types/api.go index 81b83da221..9908f5c973 100644 --- a/src/go/types/api.go +++ b/src/go/types/api.go @@ -24,7 +24,7 @@ // // For a tutorial, see https://golang.org/s/types-tutorial. // -package types // import "go/types" +package types import ( "bytes" -- 2.48.1