From fb47c16287e9a62ccb3bd579e304d393871b58cf Mon Sep 17 00:00:00 2001 From: Alan Donovan Date: Mon, 4 May 2015 10:49:16 -0400 Subject: [PATCH] go/buildutil: fix usage message for -tags flag Now: % gorename -h Usage of ./gorename: ... -tags build tags a list of build tags to consider... Change-Id: I46d6906f683407bad6f3dee25c63b139f47e4588 Reviewed-on: https://go-review.googlesource.com/9655 Reviewed-by: Dominik Honnef Reviewed-by: David Crawshaw --- go/buildutil/tags.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/go/buildutil/tags.go b/go/buildutil/tags.go index 30b38d37..97350940 100644 --- a/go/buildutil/tags.go +++ b/go/buildutil/tags.go @@ -4,9 +4,9 @@ package buildutil import "fmt" -const TagsFlagDoc = `'tag list'\ta list of build tags to consider satisfied during the build. -For more information about build tags, see the description of -build constraints in the documentation for the go/build package` +const TagsFlagDoc = "a list of `build tags` to consider satisfied during the build. " + + "For more information about build tags, see the description of " + + "build constraints in the documentation for the go/build package" // TagsFlag is an implementation of the flag.Value interface that parses // a flag value in the same manner as go build's -tags flag and