Skip to content

Commit

Permalink
Use ` instead of ' for function names
Browse files Browse the repository at this point in the history
  • Loading branch information
sdroege committed Nov 2, 2017
1 parent 5687000 commit 283b4a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/thread/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
//! a thread will unwind the stack, running destructors and freeing
//! owned resources. While not meant as a 'try/catch' mechanism, panics
//! in Rust can nonetheless be caught with
//! ['catch_unwind'](../../std/panic/fn.catch_unwind.html) and recovered
//! [`catch_unwind`](../../std/panic/fn.catch_unwind.html) and recovered
//! from, or alternatively be resumed with
//! ['resume_unwind'](../../std/panic/fn.resume_unwind.html). If the panic
//! [`resume_unwind`](../../std/panic/fn.resume_unwind.html). If the panic
//! is not caught the thread will exit, but the panic may optionally be
//! detected from a different thread with `join`. If the main thread panics
//! without the panic being caught, the application will exit with a
Expand Down

0 comments on commit 283b4a1

Please sign in to comment.