Fix clippy_lints doc-tests

This commit is contained in:
Mateusz Mikuła
2018-06-25 21:22:53 +02:00
parent a6601f2d02
commit 1036df5699
3 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@
//! //!
//! For example, the lint would catch //! For example, the lint would catch
//! //!
//! ``` //! ```ignore
//! while condition() { //! while condition() {
//! update_condition(); //! update_condition();
//! if x { //! if x {
@@ -16,7 +16,7 @@
//! //!
//! And suggest something like this: //! And suggest something like this:
//! //!
//! ``` //! ```ignore
//! while condition() { //! while condition() {
//! update_condition(); //! update_condition();
//! if x { //! if x {
@@ -365,7 +365,7 @@ fn check_and_warn<'a>(ctx: &EarlyContext, expr: &'a ast::Expr) {
/// ///
/// is transformed to /// is transformed to
/// ///
/// ``` /// ```ignore
/// { /// {
/// let x = 5; /// let x = 5;
/// ``` /// ```
@@ -388,7 +388,7 @@ pub fn erode_from_back(s: &str) -> String {
/// any number of opening braces are eaten, followed by any number of newlines. /// any number of opening braces are eaten, followed by any number of newlines.
/// e.g., the string /// e.g., the string
/// ///
/// ``` /// ```ignore
/// { /// {
/// something(); /// something();
/// inside_a_block(); /// inside_a_block();
@@ -397,7 +397,7 @@ pub fn erode_from_back(s: &str) -> String {
/// ///
/// is transformed to /// is transformed to
/// ///
/// ``` /// ```ignore
/// something(); /// something();
/// inside_a_block(); /// inside_a_block();
/// } /// }

View File

@@ -43,7 +43,7 @@ impl LintPass for QuestionMarkPass {
impl QuestionMarkPass { impl QuestionMarkPass {
/// Check if the given expression on the given context matches the following structure: /// Check if the given expression on the given context matches the following structure:
/// ///
/// ``` /// ```ignore
/// if option.is_none() { /// if option.is_none() {
/// return None; /// return None;
/// } /// }

View File

@@ -612,7 +612,7 @@ pub fn span_lint_and_then<'a, 'tcx: 'a, T: LintContext<'tcx>, F>(
/// These suggestions can be parsed by rustfix to allow it to automatically fix your code. /// These suggestions can be parsed by rustfix to allow it to automatically fix your code.
/// In the example below, `help` is `"try"` and `sugg` is the suggested replacement `".any(|x| x > 2)"`. /// In the example below, `help` is `"try"` and `sugg` is the suggested replacement `".any(|x| x > 2)"`.
/// ///
/// ``` /// ```ignore
/// error: This `.fold` can be more succinctly expressed as `.any` /// error: This `.fold` can be more succinctly expressed as `.any`
/// --> $DIR/methods.rs:390:13 /// --> $DIR/methods.rs:390:13
/// | /// |