From d3586ad2b2b140435055c349393154ae7cfffaea Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 27 Mar 2026 07:18:04 +0200 Subject: task 3a4c0f14-16ad-487f-af7c-bd99ee6464e6: use pointer Dispatcher receivers --- internal/askcli/command_fish.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/askcli/command_fish.go') 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 -- cgit v1.2.3