From 749ded2892eed152455113e16f29f3a6e0c48480 Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Fri, 31 Jan 2025 16:50:17 +0100 Subject: [PATCH] Update terminator.rs --- consensus/src/terminator.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/consensus/src/terminator.rs b/consensus/src/terminator.rs index da06e9be..670b5756 100644 --- a/consensus/src/terminator.rs +++ b/consensus/src/terminator.rs @@ -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; } @@ -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!( @@ -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." ); } }