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

chore: fix typos #4020

Merged
merged 1 commit into from
Apr 3, 2024
Merged
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 commons/forkable-jellyfish-merkle/src/node_type/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
//! and [`LeafNode`] as building blocks of a 256-bit
//! [`JellyfishMerkleTree`](crate::JellyfishMerkleTree). [`InternalNode`] represents a 4-level
//! binary tree to optimize for IOPS: it compresses a tree with 31 nodes into one node with 16
//! chidren at the lowest level. [`LeafNode`] stores the full key and the account blob data
//! children at the lowest level. [`LeafNode`] stores the full key and the account blob data
//! associated.
#![allow(clippy::unit_arg)]

Expand Down
2 changes: 1 addition & 1 deletion commons/metrics/src/op_counters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use std::time::Duration;

/// A small wrapper around Histogram to handle the special case
/// of duration buckets.
/// This Histogram will handle the correct granularty for logging
/// This Histogram will handle the correct granularity for logging
/// time duration in a way that fits the used buckets.
pub struct DurationHistogram {
histogram: Histogram,
Expand Down
2 changes: 1 addition & 1 deletion vm/parallel-executor/src/scheduler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ impl Scheduler {
}

/// Grab an index to try and validate next (by fetch-and-incrementing validation_idx).
/// - If the index is out of bounds, return None (and invoke a check of whethre
/// - If the index is out of bounds, return None (and invoke a check of whether
/// all txns can be committed).
/// - If the transaction is ready for validation (EXECUTED state), return the version
/// to the caller together with a guard to be used for the corresponding ValidationTask.
Expand Down
Loading