1
0
mirror of https://github.com/golang/go synced 2024-09-30 06:14:31 -06:00

internal/tool: avoid editorialization

Change-Id: Ic274b13ce7b621e2baf4c2659fb4e7facd6b19b4
Reviewed-on: https://go-review.googlesource.com/c/tools/+/212581
Reviewed-by: Ian Cottrell <iancottrell@google.com>
This commit is contained in:
Dan Kortschak 2020-01-01 08:40:33 +10:30 committed by Ian Cottrell
parent 32f14692fc
commit d7d4448666

View File

@ -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