From 3830e2610ba1e7c040cdc71aa8b983217c2d299e Mon Sep 17 00:00:00 2001 From: Karl Seguin Date: Mon, 22 Dec 2025 16:44:42 +0800 Subject: [PATCH] Update src/browser/js/Snapshot.zig Co-authored-by: Pierre Tachoire --- src/browser/js/Snapshot.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/js/Snapshot.zig b/src/browser/js/Snapshot.zig index 0618cbfa..b02c246a 100644 --- a/src/browser/js/Snapshot.zig +++ b/src/browser/js/Snapshot.zig @@ -33,7 +33,7 @@ const Snapshot = @This(); const embedded_snapshot_blob = if (@import("build_config").snapshot_path) |path| @embedFile(path) else ""; // When creating our Snapshot, we use local function templates for every Zig type. -// You cannot, from what I can tell, create persisted FunctoinTemplates at +// You cannot, from what I can tell, create persisted FunctionTemplates at // snapshot creation time. But you can embedd those templates (or any other v8 // Data) so that it's available to contexts created from the snapshot. This is // the starting index of those function templtes, which we can extract. At