]> git.lizzy.rs Git - rust.git/commitdiff
s/die/terminate/ in abort documentation.
authorMara Bos <m-ou.se@m-ou.se>
Mon, 5 Jul 2021 10:43:45 +0000 (12:43 +0200)
committerMara Bos <m-ou.se@m-ou.se>
Mon, 5 Jul 2021 10:43:45 +0000 (12:43 +0200)
library/std/src/process.rs

index 00027591a13ba033915b5942e12b02d1e19c50ce..11a0432ce27a1ebb91e8f90724cfe87fd694a783 100644 (file)
@@ -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