Use ` instead of ' for function names

This commit is contained in:
Sebastian Dröge 2017-11-02 18:29:52 +02:00
parent 5687000979
commit 283b4a1b0b

View file

@ -27,9 +27,9 @@
//! a thread will unwind the stack, running destructors and freeing //! a thread will unwind the stack, running destructors and freeing
//! owned resources. While not meant as a 'try/catch' mechanism, panics //! owned resources. While not meant as a 'try/catch' mechanism, panics
//! in Rust can nonetheless be caught with //! 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 //! 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 //! 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 //! detected from a different thread with `join`. If the main thread panics
//! without the panic being caught, the application will exit with a //! without the panic being caught, the application will exit with a