Skip to content

Commit

Permalink
Update terminator.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
kilavvy authored Jan 31, 2025
1 parent ffc842d commit 749ded2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions consensus/src/terminator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ impl Terminator {
if !self.parent_exit.is_terminated() {
debug!(
target: self.component_name,
"Terminator has not recieved exit from parent: synchronization canceled.",
"Terminator has not received exit from parent: synchronization canceled.",
);
return;
}
Expand All @@ -104,7 +104,7 @@ impl Terminator {
offspring_receivers.push((receiver, name));
}

// Make sure that all descendants recieved exit and won't be communicating with other components
// Make sure that all descendants received exit and won't be communicating with other components
for (receiver, name) in offspring_receivers {
if receiver.await.is_err() {
debug!(
Expand Down Expand Up @@ -143,7 +143,7 @@ impl Terminator {
} else {
debug!(
target: self.component_name,
"Terminator recieved shutdown permission from parent component."
"Terminator received shutdown permission from parent component."
);
}
}
Expand Down

0 comments on commit 749ded2

Please sign in to comment.