fix: typo

Christian Rocha and Carlos Alexandro Becker created

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>

Change summary

internal/app/app.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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:])