diff --git a/crates/prover/src/constraint_framework/component.rs b/crates/prover/src/constraint_framework/component.rs index 8f082f5f7..960b3c754 100644 --- a/crates/prover/src/constraint_framework/component.rs +++ b/crates/prover/src/constraint_framework/component.rs @@ -81,7 +81,7 @@ impl TraceLocationAllocator { } /// Create a new `TraceLocationAllocator` with fixed preprocessed columns setup. - pub fn new_with_preproccessed_columns(preprocessed_columns: &[PreprocessedColumn]) -> Self { + pub fn new_with_preprocessed_columns(preprocessed_columns: &[PreprocessedColumn]) -> Self { Self { next_tree_offsets: Default::default(), preprocessed_columns: preprocessed_columns @@ -213,7 +213,7 @@ impl Component for FrameworkComponent { }) } - fn preproccessed_column_indices(&self) -> ColumnVec { + fn preprocessed_column_indices(&self) -> ColumnVec { self.preprocessed_column_indices.clone() }