From 0d3bffbb3d20e8acaf44a5dfa15b4561fb5f97cb Mon Sep 17 00:00:00 2001 From: Danil <37103154+Danyylka@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:36:37 +0100 Subject: [PATCH] Update constraints-json.md --- mkdocs/docs/circom-language/formats/constraints-json.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/docs/circom-language/formats/constraints-json.md b/mkdocs/docs/circom-language/formats/constraints-json.md index 31b9be1a..55f54351 100644 --- a/mkdocs/docs/circom-language/formats/constraints-json.md +++ b/mkdocs/docs/circom-language/formats/constraints-json.md @@ -22,7 +22,7 @@ where the linear expression is represented by a dictionary with the signal numbe ``` { "sig_num_l1": "coef_1", ... , "sig_num_lm": "coef_m"}` ``` -If you also include the ```--sym``` flag, in the generated [sym file](sym.md) you can see the qualified name in the circom program associted to each signal number, with the signal number 0 always expressing the constant 1. This way we can express any constant by having it as coeficient of the signal 0. +If you also include the ```--sym``` flag, in the generated [sym file](sym.md) you can see the qualified name in the circom program associted to each signal number, with the signal number 0 always expressing the constant 1. This way we can express any constant by having it as coefficient of the signal 0. Let us consider the following simple circuit in 'basic.circom':