Skip to content

Commit 7369845

Browse files
committed
feedback
1 parent 9684867 commit 7369845

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/support.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ function makeBigInt(low, high, unsigned) {
604604
function dynCall(sig, ptr, args) {
605605
#if !WASM_BIGINT
606606
// Without WASM_BIGINT support we cannot directly call function with i64 as
607-
// part of thier signature, so we rely the dynCall functions generated by
607+
// part of their signature, so we rely on the dynCall functions generated by
608608
// wasm-emscripten-finalize
609609
if (sig.indexOf('j') != -1) {
610610
#if ASSERTIONS

tools/shared.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1210,7 +1210,7 @@ def make_jscall(sig):
12101210

12111211
@staticmethod
12121212
def make_dynCall(sig, args):
1213-
# wasm2c and asyncify are yet compatible with direct wasm table calls
1213+
# wasm2c and asyncify are not yet compatible with direct wasm table calls
12141214
if Settings.ASYNCIFY or Settings.WASM2C or not JS.is_legal_sig(sig):
12151215
args = ','.join(args)
12161216
if not Settings.MAIN_MODULE and not Settings.SIDE_MODULE:

0 commit comments

Comments
 (0)