From 44a54a157de22d94dfeabbd825e602e5262167e5 Mon Sep 17 00:00:00 2001 From: nullbitx8 <92404251+nullbitx8@users.noreply.github.com> Date: Sat, 21 Oct 2023 06:39:09 -0400 Subject: [PATCH] Fix cargo fmt suggestions (#158) --- examples/factorial.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/factorial.rs b/examples/factorial.rs index 5da8391b..c927ab49 100644 --- a/examples/factorial.rs +++ b/examples/factorial.rs @@ -24,7 +24,6 @@ use halo2_proofs::{dev::MockProver, halo2curves::bn256::Fr}; const MAX_FACTORIAL: usize = 10; fn generate + Hash>() -> (Circuit, Option>) { - // // table for the circuit: // | step_type | i | x | // ---------------------------------- @@ -149,7 +148,7 @@ fn main() { // plaf boilerplate use chiquito::plonkish::backend::plaf::chiquito2Plaf; - use polyexen::plaf::{backends::halo2::PlafH2Circuit}; + use polyexen::plaf::backends::halo2::PlafH2Circuit; // get Chiquito ir let (circuit, wit_gen) = generate::();