Skip to content

Commit 9f06798

Browse files
ybkimmdeadprogram
authored andcommitted
Fix typo in wasm_exec.js, syscall/js.valueLoadString()
1 parent ce407dd commit 9f06798

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

targets/wasm_exec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@
408408

409409
// func valueInstanceOf(v ref, t ref) bool
410410
"syscall/js.valueInstanceOf": (v_addr, t_addr) => {
411-
return loadValue(v_attr) instanceof loadValue(t_addr);
411+
return loadValue(v_addr) instanceof loadValue(t_addr);
412412
},
413413

414414
// func copyBytesToGo(dst []byte, src ref) (int, bool)

0 commit comments

Comments
 (0)