Skip to content

Commit 6b659ce

Browse files
committed
Rename nested_metas to meta_item_inners
1 parent 0ff9afd commit 6b659ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_resolve/src/build_reduced_graph.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1072,8 +1072,8 @@ impl<'a, 'ra, 'tcx> BuildReducedGraphVisitor<'a, 'ra, 'tcx> {
10721072
import_all = Some(meta.span);
10731073
break;
10741074
}
1075-
MetaItemKind::List(nested_metas) => {
1076-
for nested_meta in nested_metas {
1075+
MetaItemKind::List(meta_item_inners) => {
1076+
for nested_meta in meta_item_inners {
10771077
match nested_meta.ident() {
10781078
Some(ident) if nested_meta.is_word() => {
10791079
single_imports.push(ident)

0 commit comments

Comments
 (0)