issues

Github, Jira, Gitlab issues from Plan 9's acme
Log | Files | Refs | README | LICENSE

commit fe16fe01487af6519ff5099959c52917bc7e5deb
parent 791ad7f130c5cc7c060bb503c9b2c7cfc2797eb4
Author: Oliver Lowe <o@olowe.co>
Date:   Fri, 24 Jul 2026 16:13:39 +1000

issue: print correct command usage

Diffstat:
Missue/issue.go | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/issue/issue.go b/issue/issue.go @@ -24,11 +24,7 @@ var fsys fs.FS var project string = "golang/go" func usage() { - fmt.Fprintf(os.Stderr, `usage: issue [-p owner/repo] - -If query is a single number, prints the full history for the issue. -Otherwise, prints a table of matching results. -`) + fmt.Fprintf(os.Stderr, "usage: issue [-p owner/repo]") flag.PrintDefaults() os.Exit(2) }