From e7eaf9a913d3fefc9760959cb6cff7909e02c6d3 Mon Sep 17 00:00:00 2001 From: schaeff Date: Wed, 31 Mar 2021 12:39:38 +0200 Subject: [PATCH] fmt --- zokrates_core/src/ir/expression.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zokrates_core/src/ir/expression.rs b/zokrates_core/src/ir/expression.rs index 27ce5c86..57ec2753 100644 --- a/zokrates_core/src/ir/expression.rs +++ b/zokrates_core/src/ir/expression.rs @@ -259,7 +259,7 @@ impl Mul<&T> for LinComb { impl Div<&T> for LinComb { type Output = LinComb; -// Clippy warns about multiplication in a method named div. It's okay, here, since we multiply with the inverse. + // Clippy warns about multiplication in a method named div. It's okay, here, since we multiply with the inverse. #[allow(clippy::suspicious_arithmetic_impl)] fn div(self, scalar: &T) -> LinComb { self * &scalar.inverse_mul().unwrap()