From d5b1c787cecdc806f8ecf66ccf95a547a58498a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Mon, 23 Dec 2024 12:22:57 +0100 Subject: [PATCH] Mention more alternatives --- src/process/status.cr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/process/status.cr b/src/process/status.cr index fba6ab86a19b..268d2f9e52d6 100644 --- a/src/process/status.cr +++ b/src/process/status.cr @@ -104,7 +104,7 @@ end class Process::Status # Platform-specific exit status code, which usually contains either the exit code or a termination signal. # The other `Process::Status` methods extract the values from `exit_status`. - @[Deprecated("Use `Process::Status#exit_code`")] + @[Deprecated("Use `#exit_reason`, `#exit_code`, or `#system_exit_status` instead")] def exit_status : Int32 @exit_status.to_i32! end