Fix typo in error message

This commit is contained in:
gingerBill
2020-06-06 22:39:36 +01:00
parent a89633e3ed
commit 87a6d695d6
+1 -1
View File
@@ -66,7 +66,7 @@ void check_stmt_list(CheckerContext *ctx, Array<Ast *> const &stmts, u32 flags)
case Ast_ExprStmt:
if (is_divigering_stmt(n)) {
error(n, "Statements after a non-diverging procedure call are never executed");
error(n, "Statements after a diverging procedure call are never executed");
}
break;
}