This commit is contained in:
Jay Hardee 2017-07-30 18:21:38 -04:00
parent 937a0aa20a
commit 017b77ae05
1 changed files with 8 additions and 4 deletions

View File

@ -6,7 +6,8 @@ use syntax::ast::*;
use syntax_pos;
use utils::{span_help_and_lint, snippet_opt, in_external_macro};
/// **What it does:** Warns if a long integral or floating-point constant does not contain underscores.
/// **What it does:** Warns if a long integral or floating-point constant does
/// not contain underscores.
///
/// **Why is this bad?** Reading long numbers is difficult without separators.
///
@ -23,9 +24,11 @@ declare_lint! {
"long integer literal without underscores"
}
/// **What it does:** Warns if an integral or floating-point constant is grouped inconsistently with underscores.
/// **What it does:** Warns if an integral or floating-point constant is
/// grouped inconsistently with underscores.
///
/// **Why is this bad?** Readers may incorrectly interpret inconsistently grouped digits.
/// **Why is this bad?** Readers may incorrectly interpret inconsistently
/// grouped digits.
///
/// **Known problems:** None.
///
@ -40,7 +43,8 @@ declare_lint! {
"integer literals with digits grouped inconsistently"
}
/// **What it does:** Warns if the digits of an integral or floating-point constant are grouped into groups that
/// **What it does:** Warns if the digits of an integral or floating-point
/// constant are grouped into groups that
/// are too large.
///
/// **Why is this bad?** Negatively impacts readability.