Merge pull request #2428 from phansch/fix_lint_list_issues
Allow empty lines in lint doc examples
This commit is contained in:
commit
02ee62533d
3 changed files with 10 additions and 7 deletions
|
|
@ -97,12 +97,11 @@ declare_lint! {
|
|||
/// // Good (as inner attribute)
|
||||
/// #![inline(always)]
|
||||
///
|
||||
/// fn this_is_fine_too(..) { ... }
|
||||
/// fn this_is_fine(..) { ... }
|
||||
///
|
||||
/// // Good (as outer attribute)
|
||||
/// #[inline(always)]
|
||||
/// fn this_is_fine(..) { ... }
|
||||
///
|
||||
/// fn this_is_fine_too(..) { ... }
|
||||
/// ```
|
||||
declare_lint! {
|
||||
pub EMPTY_LINE_AFTER_OUTER_ATTR,
|
||||
|
|
|
|||
|
|
@ -13,7 +13,6 @@ use utils::{match_def_path, opt_def_id, paths, span_help_and_lint};
|
|||
/// ```rust
|
||||
/// let bad_ref: &usize = std::mem::zeroed();
|
||||
/// ```
|
||||
|
||||
declare_lint! {
|
||||
pub INVALID_REF,
|
||||
Warn,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue