Skip to content

Commit 283b4a1

Browse files
committed
Use ` instead of ' for function names
1 parent 5687000 commit 283b4a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/thread/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
//! a thread will unwind the stack, running destructors and freeing
2828
//! owned resources. While not meant as a 'try/catch' mechanism, panics
2929
//! 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
3131
//! 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
3333
//! is not caught the thread will exit, but the panic may optionally be
3434
//! detected from a different thread with `join`. If the main thread panics
3535
//! without the panic being caught, the application will exit with a

0 commit comments

Comments
 (0)