From 37aae9e4bc339e55eae288839189fb15fd3dbbce Mon Sep 17 00:00:00 2001 From: Nicole Graus Date: Wed, 23 Oct 2024 11:24:03 -0300 Subject: [PATCH] Update math/src/circle/polynomial.rs Co-authored-by: Ivan Litteri <67517699+ilitteri@users.noreply.github.com> --- math/src/circle/polynomial.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math/src/circle/polynomial.rs b/math/src/circle/polynomial.rs index 93baa97ca..953b75834 100644 --- a/math/src/circle/polynomial.rs +++ b/math/src/circle/polynomial.rs @@ -10,7 +10,7 @@ use super::{ }; /// Given the 2^n coefficients of a two-variables polynomial of degree 2^n - 1 in the basis {1, y, x, xy, 2xˆ2 -1, 2xˆ2y-y, 2xˆ3-x, 2xˆ3y-xy,...} -/// returns the evaluation of the polynomianl on the points of the standard coset of size 2^n. +/// returns the evaluation of the polynomial on the points of the standard coset of size 2^n. /// Note that coeff has to be a vector with length a power of two 2^n. pub fn evaluate_cfft( mut coeff: Vec>,