s/die/terminate/ in abort documentation.

This commit is contained in:
Mara Bos 2021-07-05 12:43:45 +02:00
parent f73a555fc9
commit 08d912fdcc

View 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