From d7d444866696e773f757e5a261d86ac362f0984a Mon Sep 17 00:00:00 2001 From: Dan Kortschak Date: Wed, 1 Jan 2020 08:40:33 +1030 Subject: [PATCH] internal/tool: avoid editorialization Change-Id: Ic274b13ce7b621e2baf4c2659fb4e7facd6b19b4 Reviewed-on: https://go-review.googlesource.com/c/tools/+/212581 Reviewed-by: Ian Cottrell --- internal/tool/tool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/tool/tool.go b/internal/tool/tool.go index 9865d2a6b19..ecf68d7c1be 100644 --- a/internal/tool/tool.go +++ b/internal/tool/tool.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package tool is an opinionated harness for writing Go tools. +// Package tool is a harness for writing Go tools. package tool import ( @@ -18,7 +18,7 @@ import ( "time" ) -// This file is a very opinionated harness for writing your main function. +// This file is a harness for writing your main function. // The original version of the file is in golang.org/x/tools/internal/tool. // // It adds a method to the Application type