We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5687000 commit 283b4a1Copy full SHA for 283b4a1
src/libstd/thread/mod.rs
@@ -27,9 +27,9 @@
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
30
-//! ['catch_unwind'](../../std/panic/fn.catch_unwind.html) and recovered
+//! [`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
+//! [`resume_unwind`](../../std/panic/fn.resume_unwind.html). If the panic
33
//! is not caught the thread will exit, but the panic may optionally be
34
//! detected from a different thread with `join`. If the main thread panics
35
//! without the panic being caught, the application will exit with a
0 commit comments