improve flag doc with go 1.10+ (#56)

This commit is contained in:
Joshua Humphries
2018-10-18 13:16:33 -04:00
committed by GitHub
parent e00ef3eb7c
commit a337c1afcf
5 changed files with 188 additions and 101 deletions
+2 -2
View File
@@ -5,8 +5,8 @@ package main
import "flag"
var (
unix = flag.Bool("unix", false,
`Indicates that the server address is the path to a Unix domain socket.`)
unix = flag.Bool("unix", false, prettify(`
Indicates that the server address is the path to a Unix domain socket.`))
)
func init() {