From 28024cd2902294a0de71a12faf008b9b77aee7a2 Mon Sep 17 00:00:00 2001 From: Josh Rickard Date: Tue, 26 Mar 2024 08:54:15 -0500 Subject: [PATCH] Fix typo in Signal docs --- src/signal.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/signal.cr b/src/signal.cr index 50360b73c511..e0f59a9f57d3 100644 --- a/src/signal.cr +++ b/src/signal.cr @@ -96,7 +96,7 @@ enum Signal : Int32 # # After executing this, whenever the current process receives the # corresponding signal, the passed function will be called (instead of the OS - # default). The handler will run in a signal-safe fiber thought the event + # default). The handler will run in a signal-safe fiber throughout the event # loop; there is no limit to what functions can be called, unlike raw signals # that run on the sigaltstack. #