From e2211bd21e2e49ced08a46af8a4591b098951def Mon Sep 17 00:00:00 2001 From: Elkana Tovey <40407298+elkanatovey@users.noreply.github.com> Date: Mon, 20 Nov 2023 11:38:38 +0200 Subject: [PATCH] Fix typo signals.md rephrase sentence to make sense --- mkdocs/docs/circom-language/signals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/docs/circom-language/signals.md b/mkdocs/docs/circom-language/signals.md index caf4f3b59..620bb94ca 100644 --- a/mkdocs/docs/circom-language/signals.md +++ b/mkdocs/docs/circom-language/signals.md @@ -25,7 +25,7 @@ template Multiplier2(){ component main {public [in1,in2]} = Multiplier2(); ``` -Since circom 2.0.4, it is also allowed the initialization of intermediate and outputs signals right after their declaration. Then, the previous example can be rewritten as follows: +Since circom 2.0.4, it is also allowed to initialize intermediate and outputs signals right after their declaration. Then, the previous example can be rewritten as follows: ```text pragma circom 2.0.0;