Skip to content

Commit

Permalink
doc lint
Browse files Browse the repository at this point in the history
lint
  • Loading branch information
clabby committed Sep 2, 2024
1 parent 3714b7b commit d5efe5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/client/src/kona.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fn main() -> Result<()> {
.with_parent_header(driver.take_l2_safe_head_header())
.with_fetcher(l2_provider.clone())
.with_hinter(l2_provider)
.with_handler_register(fpvm_handle_register)
.with_handle_register(fpvm_handle_register)
.build()?;
let Header { number, .. } = *executor.execute_payload(attributes)?;
let output_root = executor.compute_output_root()?;
Expand Down
2 changes: 1 addition & 1 deletion crates/executor/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ where
}

/// Set the [KonaHandleRegister] for execution.
pub fn with_handler_register(mut self, handler_register: KonaHandleRegister<F, H>) -> Self {
pub fn with_handle_register(mut self, handler_register: KonaHandleRegister<F, H>) -> Self {
self.handler_register = Some(handler_register);

Check warning on line 63 in crates/executor/src/builder.rs

View check run for this annotation

Codecov / codecov/patch

crates/executor/src/builder.rs#L62-L63

Added lines #L62 - L63 were not covered by tests
self
}
Expand Down
2 changes: 1 addition & 1 deletion crates/executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ where
config: &'a RollupConfig,
/// The inner state database component.
trie_db: TrieDB<F, H>,
/// The [BoxedHandlerRegister] to use during execution.
/// The [KonaHandleRegister] to use during execution.
handler_register: Option<KonaHandleRegister<F, H>>,
}

Expand Down

0 comments on commit d5efe5c

Please sign in to comment.