diff options
| author | Alex Flint <[email protected]> | 2015-11-11 09:33:24 -0800 |
|---|---|---|
| committer | Alex Flint <[email protected]> | 2015-11-11 09:33:24 -0800 |
| commit | 0f9dfa27d10f148f054a2ced60902637650c270a (patch) | |
| tree | c42d33dbae306a0b2844c0bafff5b510634b3e7d /usage.go | |
| parent | a49bba8533235e33cb82893851edcbc2805a4b77 (diff) | |
| parent | d6a447ed7c63971839fc22d3d0f1c623aa556d2f (diff) | |
Merge pull request #15 from walle/fix_lint_warning
Fix lint warning
Diffstat (limited to 'usage.go')
| -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) } |
