From dc51768d29bb9dd2d1523ed63bdc8b50f7a4c996 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Wed, 29 May 2024 16:39:01 -0400 Subject: [PATCH] Fix typo in comment (#783) Signed-off-by: Christophe Bedard --- launch/launch/actions/execute_local.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/launch/launch/actions/execute_local.py b/launch/launch/actions/execute_local.py index 487ae905c..9c5367173 100644 --- a/launch/launch/actions/execute_local.py +++ b/launch/launch/actions/execute_local.py @@ -303,7 +303,7 @@ def __on_shutdown_process_event( ) -> Optional[LaunchDescription]: typed_event = cast(ShutdownProcess, context.locals.event) if not typed_event.process_matcher(self): - # this event whas not intended for this process + # this event was not intended for this process return None return self._shutdown_process(context, send_sigint=True) @@ -313,7 +313,7 @@ def __on_signal_process_event( ) -> Optional[LaunchDescription]: typed_event = cast(SignalProcess, context.locals.event) if not typed_event.process_matcher(self): - # this event whas not intended for this process + # this event was not intended for this process return None if self.process_details is None: raise RuntimeError('Signal event received before execution.')