Skip to content

Commit 4ed67ae

Browse files
kaimastacoglio
andauthored
Fix typos in documentation comments
Co-authored-by: Alessandro Coglio <[email protected]> Signed-off-by: Kai Mast <[email protected]>
1 parent 2844363 commit 4ed67ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

node/bft/src/helpers/ready.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ use snarkvm::{
2525
use indexmap::{IndexMap, IndexSet};
2626
use std::collections::{HashMap, VecDeque, hash_map::Entry::Vacant};
2727

28-
/// Maintains a queue of verified ("ready") transactions.
28+
/// Maintains a queue of verified ("ready") transmissions.
2929
#[derive(Clone, Debug)]
3030
pub struct Ready<N: Network> {
3131
/// Maps each transmission ID to its logical index (physical index + offset)

node/bft/src/primary.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1136,7 +1136,7 @@ impl<N: Network> Primary<N> {
11361136
///
11371137
/// For each receiver in the `primary_receiver` struct, there will be a dedicated tasks
11381138
/// that awaits new data and handles it accordingly.
1139-
/// Additionally, this spawns a tasks that periodically issues PrimaryPings and one that periodically
1139+
/// Additionally, this spawns a task that periodically issues PrimaryPings and one that periodically
11401140
/// tries to move the the next round of batches.
11411141
///
11421142
/// This function is called exactly once, in `Self::run()`.

node/consensus/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
The `snarkos-node-consensus` crate provides the consensus layer for the snarkOS node.
88

99
The crate builds on top of the `snarkos-node-bft`, which implements AleoBFT.
10-
It manages a ratelimiter/mempool for incoming transmissions, and manages construction of blcoks from batches that have been confirmed by the BFT layer.
10+
It manages a ratelimiter/mempool for incoming transmissions, and manages construction of blocks from batches that have been confirmed by the BFT layer.

0 commit comments

Comments
 (0)