Fix rustup fallout

This commit is contained in:
Eduardo Broto 2020-10-05 22:32:04 +02:00
parent 5f492490a3
commit 5554641fce

View File

@ -137,17 +137,17 @@ declare_clippy_lint! {
/// **Example:**
/// ```rust
/// // Good (as inner attribute)
/// #![inline(always)]
/// #![allow(dead_code)]
///
/// fn this_is_fine() { }
///
/// // Bad
/// #[inline(always)]
/// #[allow(dead_code)]
///
/// fn not_quite_good_code() { }
///
/// // Good (as outer attribute)
/// #[inline(always)]
/// #[allow(dead_code)]
/// fn this_is_fine_too() { }
/// ```
pub EMPTY_LINE_AFTER_OUTER_ATTR,