@@ -139,8 +139,7 @@ void FederatedInputConnection_ctor(FederatedInputConnection *self, Reactor *pare
139139 self -> max_wait = max_wait ;
140140}
141141
142- // Callback registered with the NetworkChannel. Is called asynchronously when there is a
143- // a TaggedMessage available.
142+ // Callback registered with the NetworkChannel. Is called asynchronously when there is a TaggedMessage available.
144143void FederatedConnectionBundle_handle_tagged_msg (FederatedConnectionBundle * self , const FederateMessage * _msg ) {
145144 const TaggedMessage * msg = & _msg -> message .tagged_message ;
146145 LF_DEBUG (FED , "Callback on FedConnBundle %p for message of size=%u with tag:" PRINTF_TAG , self , msg -> payload .size ,
@@ -222,16 +221,16 @@ void FederatedConnectionBundle_msg_received_cb(FederatedConnectionBundle *self,
222221 FederatedEnvironment * env_fed = (FederatedEnvironment * )self -> parent -> env ;
223222 switch (msg -> which_message ) {
224223 case FederateMessage_tagged_message_tag :
225- LF_DEBUG (FED , "Handeling tagged message" );
224+ LF_DEBUG (FED , "Handling tagged message" );
226225 FederatedConnectionBundle_handle_tagged_msg (self , msg );
227226 break ;
228227 case FederateMessage_startup_coordination_tag :
229- LF_DEBUG (FED , "Handeling start up message" );
228+ LF_DEBUG (FED , "Handling start up message" );
230229 env_fed -> startup_coordinator -> handle_message_callback (env_fed -> startup_coordinator ,
231230 & msg -> message .startup_coordination , self -> index );
232231 break ;
233232 case FederateMessage_clock_sync_msg_tag :
234- LF_DEBUG (FED , "Handeling clock sync message" );
233+ LF_DEBUG (FED , "Handling clock sync message" );
235234 if (env_fed -> do_clock_sync ) {
236235 env_fed -> clock_sync -> handle_message_callback (env_fed -> clock_sync , & msg -> message .clock_sync_msg , self -> index );
237236 } else {
0 commit comments