Merge pull request #842 from mir-protocol/factorial

Remove confusing grammatical exclamation point from factorial example
This commit is contained in:
Nicholas Ward 2022-12-09 17:29:38 -08:00 committed by GitHub
commit 4435cedc69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ fn main() -> Result<()> {
let proof = data.prove(pw)?;
println!(
"Factorial starting at {} is {}!",
"Factorial starting at {} is {}",
proof.public_inputs[0], proof.public_inputs[1]
);