From e70fcd78b9526acc39ee053556b18c37f4ba0c4b Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Fri, 21 Oct 2016 09:06:40 -0700 Subject: [PATCH] Properly escape ticks for markdown in Form docs. --- lib/src/request/form/mod.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/src/request/form/mod.rs b/lib/src/request/form/mod.rs index ee906a9a..60620e60 100644 --- a/lib/src/request/form/mod.rs +++ b/lib/src/request/form/mod.rs @@ -93,9 +93,9 @@ use request::{Request, FromData, Data, DataOutcome}; /// # fn main() { } /// ``` /// -/// Note that the ``r` lifetime is used _twice_ in the handler's signature: this -/// is necessary to tie the lifetime of the structure to the lifetime of the -/// request data. +/// Note that the `` `r`` lifetime is used _twice_ in the handler's signature: +/// this is necessary to tie the lifetime of the structure to the lifetime of +/// the request data. /// /// ## 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 -/// lifetime as ``static`. Because the lifetime is ``static`, the `into_inner` -/// method can be used to directly retrieve the parsed value. +/// lifetime as `` `static``. Because the lifetime is `` `static``, the +/// `into_inner` method can be used to directly retrieve the parsed value. /// /// ## Performance and Correctness Considerations ///