From dafd39426d4f1b5b1fe12f7f8f4ea7d9dfbe5c2b Mon Sep 17 00:00:00 2001 From: Bea Healy <57840981+TaoBi22@users.noreply.github.com> Date: Wed, 31 Jul 2024 19:39:19 +0100 Subject: [PATCH] Update RationaleSeq.md --- docs/Dialects/Seq/RationaleSeq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dialects/Seq/RationaleSeq.md b/docs/Dialects/Seq/RationaleSeq.md index 463f2b4045d9..d2e8b24e01b4 100644 --- a/docs/Dialects/Seq/RationaleSeq.md +++ b/docs/Dialects/Seq/RationaleSeq.md @@ -146,7 +146,7 @@ Examples of registers: A register without a reset lowers directly to an always block: ``` -always @(posedge clk or [posedge reset]) begin +always @(posedge clk) begin a <= [%input] end ```