From d71d38fba4a146eee9e469341fc234064577859d Mon Sep 17 00:00:00 2001 From: Asuna Date: Sat, 24 Feb 2024 10:26:18 +0100 Subject: [PATCH] [Docs] Add the missing JSON colon to the FIRRTL annotations example --- docs/Dialects/FIRRTL/FIRRTLAnnotations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dialects/FIRRTL/FIRRTLAnnotations.md b/docs/Dialects/FIRRTL/FIRRTLAnnotations.md index b1755e23e22f..3bbb8c5eb53a 100644 --- a/docs/Dialects/FIRRTL/FIRRTLAnnotations.md +++ b/docs/Dialects/FIRRTL/FIRRTLAnnotations.md @@ -27,7 +27,7 @@ indicate to the compiler that a wire "foo" should not be optimized away. ```json { "class":"firrtl.transforms.DontTouchAnnotation", - "target""~MyCircuit|MyModule>foo" + "target":"~MyCircuit|MyModule>foo" } ```