From a48a666bc89d355205550d43a9fdf1a9c507a123 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 12 Nov 2018 22:20:17 -0500 Subject: [PATCH] go/build: do not suggest runtime.Version in comment The form of runtime.Version is not guaranteed to be helpful. Do not suggest it. (The suggestion was added in CL 136215.) Change-Id: I3227d2e66b6ce860b7e62d7ba531c18fb173823c Reviewed-on: https://go-review.googlesource.com/c/149258 Run-TryBot: Russ Cox TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- src/go/build/doc.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/go/build/doc.go b/src/go/build/doc.go index 682315cbd6..8e3858feea 100644 --- a/src/go/build/doc.go +++ b/src/go/build/doc.go @@ -111,8 +111,7 @@ // - "go1.12", from Go version 1.12 onward // - any additional words listed in ctxt.BuildTags // -// There are no build tags for beta or minor releases. Programs that need the -// minor release number can call runtime.Version. +// There are no build tags for beta or minor releases. // // If a file's name, after stripping the extension and a possible _test suffix, // matches any of the following patterns: -- 2.50.0