File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 27
27
//! a thread will unwind the stack, running destructors and freeing
28
28
//! owned resources. While not meant as a 'try/catch' mechanism, panics
29
29
//! in Rust can nonetheless be caught with
30
- //! [' catch_unwind' ](../../std/panic/fn.catch_unwind.html) and recovered
30
+ //! [` catch_unwind` ](../../std/panic/fn.catch_unwind.html) and recovered
31
31
//! from, or alternatively be resumed with
32
- //! [' resume_unwind' ](../../std/panic/fn.resume_unwind.html). If the panic
32
+ //! [` resume_unwind` ](../../std/panic/fn.resume_unwind.html). If the panic
33
33
//! is not caught the thread will exit, but the panic may optionally be
34
34
//! detected from a different thread with `join`. If the main thread panics
35
35
//! without the panic being caught, the application will exit with a
You can’t perform that action at this time.
0 commit comments