1
Fork 0

fixup lint name

This commit is contained in:
Maybe Waffle 2022-10-07 15:59:39 +00:00
parent 9c64bb1de1
commit 7434b9f0d1
8 changed files with 14 additions and 14 deletions

View file

@ -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,)* )?)
}