about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--library/core/src/intrinsics.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/library/core/src/intrinsics.rs b/library/core/src/intrinsics.rs
index 8be4f599769..12229009ec8 100644
--- a/library/core/src/intrinsics.rs
+++ b/library/core/src/intrinsics.rs
@@ -720,7 +720,9 @@ extern "rust-intrinsic" {
     /// [`std::process::abort`](../../std/process/fn.abort.html) is to be preferred if possible,
     /// as its behaviour is more user-friendly and more stable.
     ///
-    /// The current implementation of `intrinsics::abort` (ab)uses a debug trap.  On Unix, the
+    /// The current implementation of `intrinsics::abort` (ab)uses a debug trap
+    /// on some popular platforms.
+    /// On Unix, the
     /// process will probably die of a signal like `SIGABRT`, `SIGILL`, `SIGTRAP`, `SIGSEGV` or
     /// `SIGBUS`.  The precise behaviour is not guaranteed and not stable.
     pub fn abort() -> !;