diff --git a/folding-schemes/src/folding/traits.rs b/folding-schemes/src/folding/traits.rs index d780a920..a96ba72f 100644 --- a/folding-schemes/src/folding/traits.rs +++ b/folding-schemes/src/folding/traits.rs @@ -109,13 +109,13 @@ pub trait WitnessExt { /// The in-circuit representation of the witness. type Var: AllocVar + WitnessVarExt; - /// Returns the openings (i.e., values being committed to) contained in the - /// witness. + /// Returns the openings (i.e., the values being committed to and the + /// randomness) contained in the witness. fn get_openings(&self) -> Vec<(&[F], F)>; } pub trait WitnessVarExt { - /// Returns the openings (i.e., values being committed to) contained in the - /// witness. + /// Returns the openings (i.e., the values being committed to and the + /// randomness) contained in the witness. fn get_openings(&self) -> Vec<(&[FpVar], FpVar)>; }