diff options
| author | Maybe Waffle <waffle.lapkin@gmail.com> | 2022-10-07 15:59:39 +0000 |
|---|---|---|
| committer | Maybe Waffle <waffle.lapkin@gmail.com> | 2022-10-09 13:07:21 +0000 |
| commit | 7434b9f0d1e1587dc97829ffbc65a5afdf04fb7e (patch) | |
| tree | 7f7198896c076fe5ea9b22d0e63cce3203f2bcf8 /compiler/rustc_ast | |
| parent | 9c64bb1de14c58c76bbbcd0a5c1791e8d23b6443 (diff) | |
| download | rust-7434b9f0d1e1587dc97829ffbc65a5afdf04fb7e.tar.gz rust-7434b9f0d1e1587dc97829ffbc65a5afdf04fb7e.zip | |
fixup lint name
Diffstat (limited to 'compiler/rustc_ast')
| -rw-r--r-- | compiler/rustc_ast/src/visit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast/src/visit.rs b/compiler/rustc_ast/src/visit.rs index c6c80e613e3..145b31842ef 100644 --- a/compiler/rustc_ast/src/visit.rs +++ b/compiler/rustc_ast/src/visit.rs @@ -246,7 +246,7 @@ pub trait Visitor<'ast>: Sized { macro_rules! walk_list { ($visitor: expr, $method: ident, $list: expr $(, $($extra_args: expr),* )?) => { { - #[cfg_attr(not(bootstrap), allow(for_loop_over_fallibles))] + #[cfg_attr(not(bootstrap), allow(for_loops_over_fallibles))] for elem in $list { $visitor.$method(elem $(, $($extra_args,)* )?) } |
