@@ -3,7 +3,7 @@ mod explicit_counter_loop;
3
3
mod explicit_into_iter_loop;
4
4
mod explicit_iter_loop;
5
5
mod for_kv_map;
6
- mod infinite_loops ;
6
+ mod infinite_loop ;
7
7
mod iter_next_loop;
8
8
mod manual_find;
9
9
mod manual_flatten;
@@ -642,7 +642,7 @@ declare_clippy_lint! {
642
642
/// and lint accordingly.
643
643
///
644
644
/// ### Why is this bad?
645
- /// A loop should be gently exited somewhere, or at lease mark its parent function as
645
+ /// A loop should be gently exited somewhere, or at least mark its parent function as
646
646
/// never return (`!`).
647
647
///
648
648
/// ### Example
@@ -673,9 +673,9 @@ declare_clippy_lint! {
673
673
/// }
674
674
/// ```
675
675
#[ clippy:: version = "1.75.0" ]
676
- pub INFINITE_LOOPS ,
676
+ pub INFINITE_LOOP ,
677
677
restriction,
678
- "possibly unintended infinite loops "
678
+ "possibly unintended infinite loop "
679
679
}
680
680
681
681
pub struct Loops {
@@ -712,7 +712,7 @@ impl_lint_pass!(Loops => [
712
712
MANUAL_FIND ,
713
713
MANUAL_WHILE_LET_SOME ,
714
714
UNUSED_ENUMERATE_INDEX ,
715
- INFINITE_LOOPS ,
715
+ INFINITE_LOOP ,
716
716
] ) ;
717
717
718
718
impl < ' tcx > LateLintPass < ' tcx > for Loops {
@@ -755,7 +755,7 @@ impl<'tcx> LateLintPass<'tcx> for Loops {
755
755
// also check for empty `loop {}` statements, skipping those in #[panic_handler]
756
756
empty_loop:: check ( cx, expr, block) ;
757
757
while_let_loop:: check ( cx, expr, block) ;
758
- infinite_loops :: check ( cx, expr, block, label) ;
758
+ infinite_loop :: check ( cx, expr, block, label) ;
759
759
}
760
760
761
761
while_let_on_iterator:: check ( cx, expr) ;
0 commit comments