From 296fa2a2f40fda37b7470cc4a9c006397ab4ccb2 Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Wed, 24 Dec 2025 16:37:16 +0800 Subject: [PATCH] Update src/http/Client.zig Co-authored-by: Pierre Tachoire --- src/http/Client.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/http/Client.zig b/src/http/Client.zig index 00b73abc..22f0b9be 100644 --- a/src/http/Client.zig +++ b/src/http/Client.zig @@ -756,7 +756,7 @@ pub const Request = struct { credentials: ?[:0]const u8 = null, // This is only relevant for intercepted requests. If a request is flagged - // as blocking AND is interecepted, then it'll be up to us to wait until + // as blocking AND is intercepted, then it'll be up to us to wait until // we receive a response to the interception. This probably isn't ideal, // but it's harder for our caller (ScriptManager) to deal with this. One // reason for that is the Http Client is already a bit CDP-aware.