about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorMara Bos <m-ou.se@m-ou.se>2021-07-05 12:43:45 +0200
committerMara Bos <m-ou.se@m-ou.se>2021-07-05 12:43:45 +0200
commit08d912fdcc4b9c8af3c00db78804f85abfadbd7a (patch)
tree07638dc5b6308913e25ae1f0c44a83d25805baa0 /library/std/src
parentf73a555fc9b5def7f444b58eff69965910a662ff (diff)
downloadrust-08d912fdcc4b9c8af3c00db78804f85abfadbd7a.tar.gz
rust-08d912fdcc4b9c8af3c00db78804f85abfadbd7a.zip
s/die/terminate/ in abort documentation.
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/process.rs b/library/std/src/process.rs
index 00027591a13..11a0432ce27 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