Skip to content

Commit

Permalink
Fix rustup fallout
Browse files Browse the repository at this point in the history
  • Loading branch information
ebroto committed Oct 5, 2020
1 parent 5f49249 commit 5554641
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions clippy_lints/src/attrs.rs
Expand Up @@ -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,
Expand Down

0 comments on commit 5554641

Please sign in to comment.