From 61f98459a040e06331bb7c4e27de1829ad5881f7 Mon Sep 17 00:00:00 2001 From: nullbitx8 Date: Fri, 20 Oct 2023 12:06:23 +0100 Subject: [PATCH] Fix cargo fmt suggestions --- 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::();