Skip to content

Commit a0a0341

Browse files
committed
Update error string
1 parent c078249 commit a0a0341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/lsp/cmd/suggested_fix.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ func (s *suggestedfix) Run(ctx context.Context, args ...string) error {
8282
}
8383
actions, err := conn.CodeAction(ctx, &p)
8484
if err != nil {
85-
return err
85+
return errors.Errorf("%v: %v", spn, err)
8686
}
8787
var edits []protocol.TextEdit
8888
for _, a := range actions {

0 commit comments

Comments
 (0)