diff --git a/halo2-base/src/utils.rs b/halo2-base/src/utils.rs index 89cdcd06..2856b267 100644 --- a/halo2-base/src/utils.rs +++ b/halo2-base/src/utils.rs @@ -192,7 +192,7 @@ pub fn fe_to_biguint(fe: &F) -> BigUint { } /// Converts a [BigPrimeField] element into a [BigInt] element by sending `fe` in `[0, F::modulus())` to -/// ``` +/// ```ignore /// fe, if fe < F::modulus() / 2 /// fe - F::modulus(), otherwise /// ```