From 7a417435cc782fb8a9e5eb532857f0c9c69c9b19 Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Thu, 26 Feb 2026 10:53:16 +0800 Subject: [PATCH] Update src/browser/Session.zig Co-authored-by: Pierre Tachoire --- src/browser/Session.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/Session.zig b/src/browser/Session.zig index c8d701cc..e919b480 100644 --- a/src/browser/Session.zig +++ b/src/browser/Session.zig @@ -302,7 +302,7 @@ fn _wait(self: *Session, page: *Page, wait_ms: u32) !WaitResult { // minimize how long we'll poll for network I/O. var ms_to_wait = @min(200, ms_to_next_task orelse 200); if (ms_to_wait > 10 and browser.hasBackgroundTasks()) { - // if we have bakcground tasks, we don't want ot wait too + // if we have background tasks, we don't want to wait too // long for a message from the client. We want to go back // to the top of the loop and run macrotasks. ms_to_wait = 10;