From eae13a94fa8dcfa1c3cad572fb177235fe0f25c2 Mon Sep 17 00:00:00 2001 From: Jordi Baylina Date: Fri, 27 Mar 2020 14:38:43 +0100 Subject: [PATCH] Fix TUTORIAL --- TUTORIAL.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index dc13850..f258142 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -66,11 +66,11 @@ We are now ready to compile the circuit. Run the following command: circom circuit.circom --r1cs --wasm --sym ``` -The `-r` option will generate `circuit.r1cs` (the r1cs constraint system of the circuit in binary format). +The `--r1cs` option will generate `circuit.r1cs` (the r1cs constraint system of the circuit in binary format). -The `-w` option will generate `circuit.wasm` (the wasm code to generate the witness). +The `--wasm` option will generate `circuit.wasm` (the wasm code to generate the witness). -The `-s` option will generate `circuit.sym` (a symbols file required for debugging or if you want to print the constraint system in an annotated mode). +The `--sym` option will generate `circuit.sym` (a symbols file required for debugging or if you want to print the constraint system in an annotated mode). ## 3. Taking the compiled circuit to *snarkjs*