Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos in documentation files #257

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/common/attributes_deposited.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use ethers::{
use eyre::Result;
use lazy_static::lazy_static;

/// Represents the attributes deposited transcation call
/// Represents the attributes deposited transaction call
#[derive(Debug)]
pub struct AttributesDepositedCall {
/// block number
Expand Down
2 changes: 1 addition & 1 deletion src/l1/chain_watcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const BLOB_CARRYING_TRANSACTION_TYPE: u64 = 3;
pub type BatcherTransactionData = Bytes;

/// Handles watching the L1 chain and monitoring for new blocks, deposits,
/// and batcher transactions. The monitoring loop is spawned in a seperate
/// and batcher transactions. The monitoring loop is spawned in a separate
/// task and communication happens via the internal channels. When ChainWatcher
/// is dropped, the monitoring task is automatically aborted.
pub struct ChainWatcher {
Expand Down
2 changes: 1 addition & 1 deletion src/l1/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// Module reposnsible for listening to the L1 chain and monitoring for new
/// Module responsible for listening to the L1 chain and monitoring for new
/// blocks and events.
pub mod chain_watcher;
pub use chain_watcher::{BlockUpdate, ChainWatcher};
Expand Down