diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-27 06:44:25 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-27 06:44:25 +0200 |
| commit | 21c1d5c9cc4974ba490b329acae735ff6bde9973 (patch) | |
| tree | 6eceefd9094eebb9c03eb2fa42d406c9cb2aea9f /internal/askcli/dispatch.go | |
| parent | 1f4c09e0f5a2a38c0b133264ec24e8ae5e5a3c22 (diff) | |
fix ask add alias output for 1a1731dc-1f11-42bd-be12-4c1af7f7e673
Diffstat (limited to 'internal/askcli/dispatch.go')
| -rw-r--r-- | internal/askcli/dispatch.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/askcli/dispatch.go b/internal/askcli/dispatch.go index 7cb217b..12407e3 100644 --- a/internal/askcli/dispatch.go +++ b/internal/askcli/dispatch.go @@ -88,7 +88,7 @@ func (d Dispatcher) Dispatch(ctx context.Context, args []string, stdin io.Reader func (d Dispatcher) help(w io.Writer) (int, error) { io.WriteString(w, "ask - task management CLI\n") io.WriteString(w, "\nSubcommands:\n") - io.WriteString(w, " ask add \"description\" Create a new task\n") + io.WriteString(w, " ask add \"description\" Create a new task and print its ID\n") io.WriteString(w, " ask list [filters] List active tasks (default)\n") io.WriteString(w, " ask ready List READY tasks (not blocked)\n") io.WriteString(w, " ask all [filters] List all tasks including completed/deleted\n") |
