We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 283b4a1 commit a12f511Copy full SHA for a12f511
src/libstd/thread/mod.rs
@@ -26,7 +26,7 @@
26
//! Fatal logic errors in Rust cause *thread panic*, during which
27
//! a thread will unwind the stack, running destructors and freeing
28
//! owned resources. While not meant as a 'try/catch' mechanism, panics
29
-//! in Rust can nonetheless be caught with
+//! in Rust can nonetheless be caught (unless compiling with `panic=abort`) with
30
//! [`catch_unwind`](../../std/panic/fn.catch_unwind.html) and recovered
31
//! from, or alternatively be resumed with
32
//! [`resume_unwind`](../../std/panic/fn.resume_unwind.html). If the panic
0 commit comments