Fix minor typo in error message
authorClifford Wolf <clifford@clifford.at>
Thu, 25 Oct 2018 11:20:00 +0000 (13:20 +0200)
committerClifford Wolf <clifford@clifford.at>
Thu, 25 Oct 2018 11:20:00 +0000 (13:20 +0200)
Signed-off-by: Clifford Wolf <clifford@clifford.at>
frontends/verilog/verilog_parser.y

index f8eee5d225db2c740a5b4d8076dd5fd57ff8f947..1fe08903c105c3e5f0ea64d088a3dc0054845bb9 100644 (file)
@@ -1478,7 +1478,7 @@ behavioral_stmt:
                        node->str = *$3;
        } behavioral_stmt_list TOK_END opt_label {
                if ($3 != NULL && $7 != NULL && *$3 != *$7)
-                       frontend_verilog_yyerror("Begin label (%s) and end label (%s) doesn't match.", $3->c_str()+1, $7->c_str()+1);
+                       frontend_verilog_yyerror("Begin label (%s) and end label (%s) don't match.", $3->c_str()+1, $7->c_str()+1);
                if ($3 != NULL)
                        delete $3;
                if ($7 != NULL)