From 87a6d695d65b91159aab388a381d411900f5d049 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 6 Jun 2020 22:39:36 +0100 Subject: Fix typo in error message --- src/check_stmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/check_stmt.cpp') diff --git a/src/check_stmt.cpp b/src/check_stmt.cpp index bfca0ae8e..9c2a32b75 100644 --- a/src/check_stmt.cpp +++ b/src/check_stmt.cpp @@ -66,7 +66,7 @@ void check_stmt_list(CheckerContext *ctx, Array 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; } -- cgit v1.2.3