Skip to content

Commit 0c580e5

Browse files
authored
Fix spelling (iden3#525)
1 parent 2c570a8 commit 0c580e5

32 files changed

+696
-645
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ This information fits with our mental map of the circuit we created: we had two
288288
snarkjs r1cs print circuit.r1cs circuit.sym
289289
```
290290

291-
To double check, we print the constraints of the circuit.
291+
To double-check, we print the constraints of the circuit.
292292

293293
You should see a thousand constraints of the form:
294294

@@ -318,7 +318,7 @@ EOT
318318
Now, we use the Javascript/WASM program created by `circom` in the directory *circuit_js* to create the witness (values of all the wires) for our inputs:
319319

320320
```sh
321-
circuit_js$ node generate_witness.js circuit.wasm ../input.json ../witness.wtns
321+
node generate_witness.js circuit.wasm ../input.json ../witness.wtns
322322
```
323323

324324
We can check if the generated witness complies with the `r1cs` file with the following command:
@@ -481,7 +481,7 @@ snarkjs fflonk verify verification_key.json public.json proof.json
481481
snarkjs groth16 verify verification_key.json public.json proof.json
482482
```
483483

484-
We use the this command to verify the proof, passing in the `verification_key` we exported earlier.
484+
We use this command to verify the proof, passing in the `verification_key` we exported earlier.
485485

486486
If all is well, you should see that `OK` has been outputted to your console. This signifies the proof is valid.
487487

@@ -610,7 +610,7 @@ the Random Beacon Model](https://eprint.iacr.org/2017/1050.pdf)
610610
- [Perpetual Powers of Tau](https://github.com/weijiekoh/perpetualpowersoftau)
611611
- [Powers of Tau](https://github.com/ebfull/powersoftau)
612612
- [Trusted setup ceremonies explored](https://www.zeroknowledge.fm/133)
613-
- [Simple react projct using snarkjs](https://github.com/LHerskind/snarkjs-react)
613+
- [Simple react project using snarkjs](https://github.com/LHerskind/snarkjs-react)
614614

615615
## Final note
616616

0 commit comments

Comments
 (0)