mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix typo in error message
This commit is contained in:
+1
-1
@@ -66,7 +66,7 @@ void check_stmt_list(CheckerContext *ctx, Array<Ast *> const &stmts, u32 flags)
|
|||||||
|
|
||||||
case Ast_ExprStmt:
|
case Ast_ExprStmt:
|
||||||
if (is_divigering_stmt(n)) {
|
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;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user