We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e1147f commit 16c77d7Copy full SHA for 16c77d7
src/libstd/process.rs
@@ -1071,8 +1071,8 @@ pub fn exit(code: i32) -> ! {
1071
/// }
1072
/// ```
1073
///
1074
-/// The abort function terminates the process, so the destructor will not get
1075
-/// run on the example below:
+/// The [`abort`] function terminates the process, so the destructor will not
+/// get run on the example below:
1076
1077
/// ```no_run
1078
/// use std::process;
@@ -1091,7 +1091,6 @@ pub fn exit(code: i32) -> ! {
1091
/// // the destructor implemented for HasDrop will never get run
1092
1093
1094
-///
1095
#[stable(feature = "process_abort", since = "1.17.0")]
1096
pub fn abort() -> ! {
1097
unsafe { ::sys::abort_internal() };
0 commit comments