Update src/runtime/js.zig

Co-authored-by: Pierre Tachoire <pierre@lightpanda.io>
This commit is contained in:
Karl Seguin
2025-08-22 15:17:59 +08:00
committed by GitHub
parent ce14f0b380
commit b9ae4c6077

View File

@@ -946,7 +946,7 @@ pub fn Env(comptime State: type, comptime WebApis: type) type {
// a JsObject, not null. Consider a function, // a JsObject, not null. Consider a function,
// _doSomething(arg: ?Env.JsObjet) void { ... } // _doSomething(arg: ?Env.JsObjet) void { ... }
// //
// And then these three calls: // And then these two calls:
// doSomething(); // doSomething();
// doSomething(null); // doSomething(null);
// //