From 441c28ed2990a98f48850a01885a51226973cd32 Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Wed, 23 Jul 2025 14:56:09 -0400 Subject: [PATCH] fix: typo Co-authored-by: Carlos Alexandro Becker --- internal/app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/app.go b/internal/app/app.go index 2ccd95ce3bd7568166526425deb9ccfad4c5fd3f..7de90dd67dd73f2941f8f859622de539935b9dc1 100644 --- a/internal/app/app.go +++ b/internal/app/app.go @@ -162,7 +162,7 @@ func (app *App) RunNonInteractive(ctx context.Context, prompt string, quiet bool msgContent := result.Message.Content().String() if len(msgContent) < readBts { - slog.Error("Non-interacgive: message content is shorter than read bytes", "message_length", len(msgContent), "read_bytes", readBts) + slog.Error("Non-interactive: message content is shorter than read bytes", "message_length", len(msgContent), "read_bytes", readBts) return fmt.Errorf("message content is shorter than read bytes: %d < %d", len(msgContent), readBts) } fmt.Println(msgContent[readBts:])