Fix lint capitalization and ignoring, test with include_str

This commit is contained in:
asquared31415 2021-07-22 19:26:16 -04:00
parent 8e7bbc9e9d
commit 1ae19b69e8
7 changed files with 148 additions and 104 deletions

View file

@ -760,7 +760,7 @@ pub trait LintContext: Sized {
}
BuiltinLintDiagnostics::NamedAsmLabel(help) => {
db.help(&help);
db.note("See the asm section of the unstable book <https://doc.rust-lang.org/nightly/unstable-book/library-features/asm.html#labels> for more information");
db.note("see the asm section of the unstable book <https://doc.rust-lang.org/nightly/unstable-book/library-features/asm.html#labels> for more information");
}
}
// Rewrap `db`, and pass control to the user.