Properly escape ticks for markdown in Form docs.

This commit is contained in:
Sergio Benitez 2016-10-21 09:06:40 -07:00
parent 2da43e24f7
commit e70fcd78b9
1 changed files with 5 additions and 5 deletions

View File

@ -93,9 +93,9 @@ use request::{Request, FromData, Data, DataOutcome};
/// # fn main() { } /// # fn main() { }
/// ``` /// ```
/// ///
/// Note that the ``r` lifetime is used _twice_ in the handler's signature: this /// Note that the `` `r`` lifetime is used _twice_ in the handler's signature:
/// is necessary to tie the lifetime of the structure to the lifetime of the /// this is necessary to tie the lifetime of the structure to the lifetime of
/// request data. /// the request data.
/// ///
/// ## Without References /// ## Without References
/// ///
@ -131,8 +131,8 @@ use request::{Request, FromData, Data, DataOutcome};
/// ``` /// ```
/// ///
/// Note that no lifetime annotations are required: Rust is able to infer the /// Note that no lifetime annotations are required: Rust is able to infer the
/// lifetime as ``static`. Because the lifetime is ``static`, the `into_inner` /// lifetime as `` `static``. Because the lifetime is `` `static``, the
/// method can be used to directly retrieve the parsed value. /// `into_inner` method can be used to directly retrieve the parsed value.
/// ///
/// ## Performance and Correctness Considerations /// ## Performance and Correctness Considerations
/// ///