Skip to content
Open
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
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