The "2. Generate Your Proofs" section contains an inaccurate command to navigate to the directory for running the age-checking program. The current instruction uses cd example/dob-script, which is incorrect. The correct directory path should be cd examples/dob/dob-script to properly access the script location.
Steps to Reproduce:
- Follow the instructions in the "2. Generate Your Proofs" section.
- Attempt to run
cd example/dob-script.
- Observe that the directory does not exist.
Expected Behavior:
The command cd examples/dob/dob-script should lead to the correct directory for executing the cargo run --release --mode groth16 --prove and cargo run --release --mode plonk --prove commands.
Suggested Fix:
Update the documentation to reflect the correct directory path: cd examples/dob/dob-script.
The "2. Generate Your Proofs" section contains an inaccurate command to navigate to the directory for running the age-checking program. The current instruction uses
cd example/dob-script, which is incorrect. The correct directory path should becd examples/dob/dob-scriptto properly access the script location.Steps to Reproduce:
cd example/dob-script.Expected Behavior:
The command
cd examples/dob/dob-scriptshould lead to the correct directory for executing thecargo run --release --mode groth16 --proveandcargo run --release --mode plonk --provecommands.Suggested Fix:
Update the documentation to reflect the correct directory path:
cd examples/dob/dob-script.