From 5499441b8e02264acf1c4da5e8a6a38c889c1628 Mon Sep 17 00:00:00 2001 From: Liang Ding Date: Sun, 7 Dec 2014 11:33:56 +0800 Subject: [PATCH] refactor --- output/outputs.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/outputs.go b/output/outputs.go index 6ef3a49..33dd159 100644 --- a/output/outputs.go +++ b/output/outputs.go @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. -// Build, run and go tool manipulations. +// Package output includes build, run and go tool related manipulations. package output import ( @@ -43,7 +43,7 @@ const ( lintSeverityWarn = "warning" // lint severity: warning ) -// Code lint. +// Lint represents a code lint. type Lint struct { File string `json:"file"` LineNo int `json:"lineNo"`