Skip to content

Commit a08dd28

Browse files
authored
Update terminator.rs
1 parent f35c7bb commit a08dd28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

consensus/src/terminator.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ impl Terminator {
8080
if !self.parent_exit.is_terminated() {
8181
debug!(
8282
target: self.component_name,
83-
"Terminator has not recieved exit from parent: synchronization canceled.",
83+
"Terminator has not received exit from parent: synchronization canceled.",
8484
);
8585
return;
8686
}
@@ -104,7 +104,7 @@ impl Terminator {
104104
offspring_receivers.push((receiver, name));
105105
}
106106

107-
// Make sure that all descendants recieved exit and won't be communicating with other components
107+
// Make sure that all descendants received exit and won't be communicating with other components
108108
for (receiver, name) in offspring_receivers {
109109
if receiver.await.is_err() {
110110
debug!(
@@ -143,7 +143,7 @@ impl Terminator {
143143
} else {
144144
debug!(
145145
target: self.component_name,
146-
"Terminator recieved shutdown permission from parent component."
146+
"Terminator received shutdown permission from parent component."
147147
);
148148
}
149149
}

0 commit comments

Comments
 (0)