diff options
| author | Fredrik Wallgren <[email protected]> | 2015-11-11 14:08:28 +0100 |
|---|---|---|
| committer | Fredrik Wallgren <[email protected]> | 2015-11-11 14:08:28 +0100 |
| commit | d6a447ed7c63971839fc22d3d0f1c623aa556d2f (patch) | |
| tree | c42d33dbae306a0b2844c0bafff5b510634b3e7d | |
| parent | a49bba8533235e33cb82893851edcbc2805a4b77 (diff) | |
Fix lint warning
| -rw-r--r-- | usage.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -103,7 +103,6 @@ func (p *Parser) WriteHelp(w io.Writer) { func synopsis(spec *spec, form string) string { if spec.dest.Kind() == reflect.Bool { return form - } else { - return form + " " + strings.ToUpper(spec.long) } + return form + " " + strings.ToUpper(spec.long) } |
