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 коммит произвёл Ian Cottrell
Родитель 32f14692fc
Коммит d7d4448666
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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