From 6e1b7615e88ae8484293fd2307e61a368f5e256c Mon Sep 17 00:00:00 2001 From: Michael Maloney Date: Mon, 4 Dec 2023 12:54:49 -0700 Subject: [PATCH] [nfc] Typo in grammar: Should be circuit_component_reg, not conditional_reg. (#158) --- spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec.md b/spec.md index d5b439da..e438ddb9 100644 --- a/spec.md +++ b/spec.md @@ -3518,7 +3518,7 @@ circuit_component_node = "node" , id , "=" , expr , [ info ] ; circuit_component_wire = "wire" , id , ":" , type , [ info ] ; circuit_component_inst = "inst" , id , "of" , id , [ info ] ; -conditional_reg = +circuit_component_reg = "reg" , id , ":" , type , expr , [ info ] | "regreset" , id , ":" , type , "," , expr , "," , expr , "," , expr , [info] ;