From b002bb8117d2c3145cc232800fa2b7aa27fa7c79 Mon Sep 17 00:00:00 2001 From: "dustin.ray" Date: Mon, 16 Dec 2024 15:03:32 -0800 Subject: [PATCH] fix: clippy and fmt --- crates/proof-of-sql/src/sql/proof/sumcheck_mle_evaluations.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/proof-of-sql/src/sql/proof/sumcheck_mle_evaluations.rs b/crates/proof-of-sql/src/sql/proof/sumcheck_mle_evaluations.rs index 1b2473fab..81d516113 100644 --- a/crates/proof-of-sql/src/sql/proof/sumcheck_mle_evaluations.rs +++ b/crates/proof-of-sql/src/sql/proof/sumcheck_mle_evaluations.rs @@ -27,7 +27,7 @@ pub struct SumcheckMleEvaluations<'a, S: Scalar> { /// The evaluations (at the random point generated by sumcheck) of the mles that are evaluated by the inner product argument. These are batched together and checked by a single IPA. pub pcs_proof_evaluations: &'a [S], - /// Evaluation (at the random point generated by sumcheck) of the function `rho_256` that is defined by rho_256(x) = x when 0 <= x < 256 and 0 otherwise. + /// Evaluation (at the random point generated by sumcheck) of the function `rho_256` that is defined by `rho_256(x)` = x when 0 <= x < 256 and 0 otherwise. pub rho_256_evaluation: Option, }