Skip to content

Commit

Permalink
fix internal section separator
Browse files Browse the repository at this point in the history
  • Loading branch information
plafer committed Feb 21, 2024
1 parent 0f189b2 commit 8acf5c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions math/src/field/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ pub trait FieldElement:
/// where `n` is relatively large (e.g., greater than 32).
pub trait StarkField: FieldElement<BaseField = Self> {
// CONSTANTS
// =============================================================================================
//----------------------------------------------------------------------------------------------

/// Prime modulus of the field. Must be of the form `k` * 2^`n` + 1 (a Proth prime).
/// This ensures that the field has high 2-adicity.
Expand All @@ -251,7 +251,7 @@ pub trait StarkField: FieldElement<BaseField = Self> {
const TWO_ADIC_ROOT_OF_UNITY: Self;

// REQUIRED METHODS
// =============================================================================================
//----------------------------------------------------------------------------------------------

/// Returns byte representation of the field modulus in little-endian byte order.
fn get_modulus_le_bytes() -> Vec<u8>;
Expand All @@ -260,7 +260,7 @@ pub trait StarkField: FieldElement<BaseField = Self> {
fn as_int(&self) -> Self::PositiveInteger;

// PROVIDED METHODS
// =============================================================================================
//----------------------------------------------------------------------------------------------

/// Returns the root of unity of order 2^`n`.
///
Expand Down

0 comments on commit 8acf5c8

Please sign in to comment.