Fix formatting, remove commented code, etc...

This commit is contained in:
blyxyas 2023-03-15 23:20:52 +01:00 committed by xFrednet
parent 4b9cb857f9
commit 1cab0cbaf0
No known key found for this signature in database
GPG key ID: F5C59D0E669E5302

View file

@ -32,7 +32,7 @@ declare_clippy_lint! {
/// ```
/// Use instead:
/// ```rust,ignore
/// # #![feature(lint_reasons)]
/// #![feature(lint_reasons)]
/// #[expect(unused_mut)]
/// fn foo() -> usize {
/// let mut a = Vec::new();
@ -61,18 +61,10 @@ impl LateLintPass<'_> for AllowAttribute {
ALLOW_ATTRIBUTES,
ident.span,
"#[allow] attribute found",
"replace it with", "expect".into()
// format!("expect{}", snippet(
// cx,
// ident.span
// .with_lo(
// ident.span.hi() + BytePos(2) // Cut *(
// )
// .with_hi(
// attr.meta().unwrap().span.hi() - BytePos(1) // Cut )
// )
// , "..."))
, Applicability::MachineApplicable);
"replace it with",
"expect".into(),
Applicability::MachineApplicable,
);
}
}
}