From 08d912fdcc4b9c8af3c00db78804f85abfadbd7a Mon Sep 17 00:00:00 2001 From: Mara Bos Date: Mon, 5 Jul 2021 12:43:45 +0200 Subject: [PATCH] s/die/terminate/ in abort documentation. --- library/std/src/process.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/process.rs b/library/std/src/process.rs index 00027591a13ba..11a0432ce27a1 100644 --- a/library/std/src/process.rs +++ b/library/std/src/process.rs @@ -1912,7 +1912,7 @@ pub fn exit(code: i32) -> ! { /// to run. /// /// The process's termination will be similar to that from the C `abort()` -/// function. On Unix, the process will die with signal `SIGABRT`, which +/// function. On Unix, the process will terminate with signal `SIGABRT`, which /// typically means that the shell prints "Aborted". /// /// # Examples