Skip to content

Commit

Permalink
fix typo : fixed minor typo in poly/src/valuation/dense.rs (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leegwangwoon authored Oct 11, 2023
1 parent 5dfeedf commit 9f9edac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poly/src/evaluations/multivariate/multilinear/dense.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl<F: Field> MultilinearExtension<F> for DenseMultilinearExtension<F> {
/// // The two-variate polynomial x_0 + 3 * x_0 * x_1 + 2 evaluates to [2, 3, 2, 6]
/// // in the two-dimensional hypercube with points [00, 10, 01, 11]
/// let mle = DenseMultilinearExtension::from_evaluations_vec(
/// 2, vec![2, 3, 3, 6].iter().map(|x| Fr::from(*x as u64)).collect()
/// 2, vec![2, 3, 2, 6].iter().map(|x| Fr::from(*x as u64)).collect()
/// );
///
/// // By the uniqueness of MLEs, `mle` is precisely the above polynomial, which
Expand Down

0 comments on commit 9f9edac

Please sign in to comment.