1
0
Fork 0
mirror of synced 2025-09-24 04:40:05 +00:00

Merge pull request #1180 from Zokrates/fix-log-fmt

Fix log fmt
This commit is contained in:
Thibaut Schaeffer 2022-07-06 15:53:48 +02:00 committed by GitHub
commit 0535bf5b50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -98,7 +98,7 @@ impl<T: Field> fmt::Display for FlatStatement<T> {
FlatStatement::Directive(ref d) => write!(f, "{}", d),
FlatStatement::Log(ref l, ref expressions) => write!(
f,
"log!(\"{}\"), {})",
"log(\"{}\"), {})",
l,
expressions
.iter()