Skip to content

Commit

Permalink
Update unknowns.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alinush committed Oct 19, 2023
1 parent 601ac7a commit 602abc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mkdocs/docs/circom-language/circom-insight/unknowns.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ template A(){
signal output out;
if (in < 0){
// Error: There are constraints depending on the value of the condition and it can be unknown during the constraint generation phase
// Error: There are constraints depending on the value of the condition and it can be unknown during the constraint generation phase
out <== 0;
}
}
Expand All @@ -96,7 +96,7 @@ template A(){
signal output out;
for (var i = 0; i < in; i++){
// Error: There are constraints depending on the value of the condition and it can be unknown during the constraint generation phase
// Error: There are constraints depending on the value of the condition and it can be unknown during the constraint generation phase
out <== i;
}
}
Expand Down

0 comments on commit 602abc2

Please sign in to comment.