Skip to content

Commit

Permalink
Update component.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
vtjl10 authored Dec 14, 2024
1 parent 8550b7d commit 9b8c491
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/prover/src/constraint_framework/component.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -213,7 +213,7 @@ impl<E: FrameworkEval> Component for FrameworkComponent<E> {
})
}

fn preproccessed_column_indices(&self) -> ColumnVec<usize> {
fn preprocessed_column_indices(&self) -> ColumnVec<usize> {
self.preprocessed_column_indices.clone()
}

Expand Down

0 comments on commit 9b8c491

Please sign in to comment.