Make docs consistent with code example.

This commit is contained in:
Damian Straszak 2024-02-19 21:28:18 +01:00
parent 81729eca91
commit 643e6ba37c
No known key found for this signature in database
GPG Key ID: 5F941076D679ABEB
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,9 @@ Let's start with a simple circuit, to introduce you to the common APIs and how t
used. The circuit will take a public input $c$, and will prove knowledge of two private
inputs $a$ and $b$ such that
$$a^2 \cdot b^2 = c.$$
$$a^2 \cdot b^2 \cdot \mathrm{constant} = c,$$
where $\mathrm{constant}$ is a fixed number (field element), such as $\mathrm{constant} = 7.$
## Define instructions