From 68bf1e87f889b752ba371fc467550bb29f243a22 Mon Sep 17 00:00:00 2001 From: Darya <127833442+defiberrys@users.noreply.github.com> Date: Thu, 4 Sep 2025 15:18:04 +0300 Subject: [PATCH] =?UTF-8?q?docs:=20fix=20`=3D=3D>`=20=E2=86=92=20`<=3D=3D`?= =?UTF-8?q?=20in=20Circom?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mkdocs/docs/circom-language/templates-and-components.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/docs/circom-language/templates-and-components.md b/mkdocs/docs/circom-language/templates-and-components.md index 74084facf..ab8b67412 100644 --- a/mkdocs/docs/circom-language/templates-and-components.md +++ b/mkdocs/docs/circom-language/templates-and-components.md @@ -88,7 +88,7 @@ template Main() { signal output out; component c = Internal (); c.in[0] <== in[0]; - c.out ==> out; // c.in[1] is not assigned yet + c.out <== out; // c.in[1] is not assigned yet c.in[1] <== in[1]; // this line should be placed before calling c.out }