Add missing lint description headers

This commit is contained in:
DaniPopes 2023-09-29 03:08:34 +02:00
parent 91997a4df4
commit ad5653b296
No known key found for this signature in database
GPG Key ID: 0F09640DDB7AC692
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@
use rustc_session::{declare_lint_pass, declare_tool_lint};
declare_clippy_lint! {
/// ### What it does
/// Checks for usage of the `#[allow]` attribute and suggests replacing it with
/// the `#[expect]` (See [RFC 2383](https://rust-lang.github.io/rfcs/2383-lint-reasons.html))
///
@ -19,7 +20,6 @@
/// (`#![allow]`) are usually used to enable or disable lints on a global scale.
///
/// ### Why is this bad?
///
/// `#[expect]` attributes suppress the lint emission, but emit a warning, if
/// the expectation is unfulfilled. This can be useful to be notified when the
/// lint is no longer triggered.

View File

@ -3368,6 +3368,7 @@
}
declare_clippy_lint! {
/// ### What it does
/// Looks for calls to [`Stdin::read_line`] to read a line from the standard input
/// into a string, then later attempting to parse this string into a type without first trimming it, which will
/// always fail because the string has a trailing newline in it.