From a89b306cf8c1468d7092c8826ef27cadd1117d53 Mon Sep 17 00:00:00 2001 From: Nicholas Ward Date: Fri, 11 Feb 2022 13:24:56 -0800 Subject: [PATCH] fmt --- plonky2/src/gadgets/curve.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plonky2/src/gadgets/curve.rs b/plonky2/src/gadgets/curve.rs index 66d2d1b1..2b27c120 100644 --- a/plonky2/src/gadgets/curve.rs +++ b/plonky2/src/gadgets/curve.rs @@ -95,7 +95,11 @@ impl, const D: usize> CircuitBuilder { AffinePointTarget { x: x3, y: y3 } } - pub fn curve_repeated_double(&mut self, p: &AffinePointTarget, n: usize) -> AffinePointTarget { + pub fn curve_repeated_double( + &mut self, + p: &AffinePointTarget, + n: usize, + ) -> AffinePointTarget { let mut result = p.clone(); for _ in 0..n {