From 3ab09d87f24c4f15e778545a26e57fe374117f0f Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Mon, 22 Dec 2025 16:44:55 +0800 Subject: [PATCH] Update src/browser/js/ExecutionWorld.zig Co-authored-by: Pierre Tachoire --- src/browser/js/ExecutionWorld.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/js/ExecutionWorld.zig b/src/browser/js/ExecutionWorld.zig index 38e066ff..1a8f9681 100644 --- a/src/browser/js/ExecutionWorld.zig +++ b/src/browser/js/ExecutionWorld.zig @@ -84,7 +84,7 @@ pub fn createContext(self: *ExecutionWorld, page: *Page, enter: bool) !*Context if (comptime IS_DEBUG) { // Getting this into the snapshot is tricky (anything involving the // global is tricky). Easier to do here, and in debug more, we're - // find with paying the small perf hit. + // fine with paying the small perf hit. const js_global = v8.FunctionTemplate.initDefault(isolate); const global_template = js_global.getInstanceTemplate();