From 684ec80b2ed2523040a91cca88d40c780dc3f9d0 Mon Sep 17 00:00:00 2001 From: cousteau Date: Sat, 9 Nov 2024 17:52:38 +0100 Subject: [PATCH] verilog.c: keyword "unsigned1" -> "unsigned" Fix minor typo in verilog.c: keyword "unsigned1" should be "unsigned", without the 1. --- parsers/verilog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsers/verilog.c b/parsers/verilog.c index 7b67caac4b..b193bb625b 100644 --- a/parsers/verilog.c +++ b/parsers/verilog.c @@ -324,7 +324,7 @@ static const struct keywordGroup verilogKeywords = { "scalared", "showcancelled", "signed", "small", "specify", "specparam", "strong0", "strong1", "supply0", "supply1", "table", "task", "time", "tran", "tranif0", "tranif1", "tri", "tri0", "tri1", - "triand", "trior", "trireg", "unsigned1", "use", "uwire", "vectored", + "triand", "trior", "trireg", "unsigned", "use", "uwire", "vectored", "wait", "wand", "weak0", "weak1", "while", "wire", "wor", "xnor", "xor", NULL },