Skip to content

Commit aeaad27

Browse files
Beuckripken
authored andcommitted
Fix typo in Asyncify (#2346)
1 parent 3d7c4cf commit aeaad27

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/passes/Asyncify.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ class ModuleAnalyzer {
397397
struct Walker : PostWalker<Walker> {
398398
void visitCall(Call* curr) {
399399
if (curr->isReturn) {
400-
Fatal() << "tail calls not yet supported in aysncify";
400+
Fatal() << "tail calls not yet supported in asyncify";
401401
}
402402
auto* target = module->getFunction(curr->target);
403403
if (target->imported() && target->module == ASYNCIFY) {
@@ -426,7 +426,7 @@ class ModuleAnalyzer {
426426
}
427427
void visitCallIndirect(CallIndirect* curr) {
428428
if (curr->isReturn) {
429-
Fatal() << "tail calls not yet supported in aysncify";
429+
Fatal() << "tail calls not yet supported in asyncify";
430430
}
431431
if (canIndirectChangeState) {
432432
info->canChangeState = true;

0 commit comments

Comments
 (0)