diff options
| author | Paul Buetow <paul@buetow.org> | 2026-03-27 07:18:04 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-03-27 07:18:04 +0200 |
| commit | d3586ad2b2b140435055c349393154ae7cfffaea (patch) | |
| tree | de03bb45cb75b138d71f54b105e695672b7d802c /internal/askcli/command_fish.go | |
| parent | f146fbc4cc25bcdeab19a0c1055c839776cebff4 (diff) | |
task 3a4c0f14-16ad-487f-af7c-bd99ee6464e6: use pointer Dispatcher receivers
Diffstat (limited to 'internal/askcli/command_fish.go')
| -rw-r--r-- | internal/askcli/command_fish.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/askcli/command_fish.go b/internal/askcli/command_fish.go index 89a8457..3d3e709 100644 --- a/internal/askcli/command_fish.go +++ b/internal/askcli/command_fish.go @@ -6,7 +6,7 @@ import ( "os" ) -func (d Dispatcher) handleFish(args []string, stdout, stderr io.Writer) (int, error) { +func (d *Dispatcher) handleFish(args []string, stdout, stderr io.Writer) (int, error) { if len(args) != 1 { fmt.Fprintln(stderr, "usage: ask fish") return 1, nil |
