about summary refs log tree commit diff
path: root/compiler/rustc_ast_pretty/src/pprust/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2024-10-07 08:59:55 +0000
committerbors <bors@rust-lang.org>2024-10-07 08:59:55 +0000
commit0b16baa570d26224612ea27f76d68e4c6ca135cc (patch)
treeb13c5298bd7a87dd14be6a728dfbe0c7de7ce748 /compiler/rustc_ast_pretty/src/pprust/mod.rs
parent690332a251329e603d1a38bc70a4f6a45ac30bc2 (diff)
parentfc64ff7ec2aad5261365c0cfc033f65140828eb2 (diff)
downloadrust-0b16baa570d26224612ea27f76d68e4c6ca135cc.tar.gz
rust-0b16baa570d26224612ea27f76d68e4c6ca135cc.zip
Auto merge of #131235 - codemountains:rename-nestedmetaitem-to-metaitemlnner, r=nnethercote
Rename `NestedMetaItem` to `MetaItemInner`

Fixes #131087

r? `@nnethercote`
Diffstat (limited to 'compiler/rustc_ast_pretty/src/pprust/mod.rs')
-rw-r--r--compiler/rustc_ast_pretty/src/pprust/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast_pretty/src/pprust/mod.rs b/compiler/rustc_ast_pretty/src/pprust/mod.rs
index 726ceebe3c5..97cb6e52d56 100644
--- a/compiler/rustc_ast_pretty/src/pprust/mod.rs
+++ b/compiler/rustc_ast_pretty/src/pprust/mod.rs
@@ -67,7 +67,7 @@ pub fn vis_to_string(v: &ast::Visibility) -> String {
     State::new().vis_to_string(v)
 }
 
-pub fn meta_list_item_to_string(li: &ast::NestedMetaItem) -> String {
+pub fn meta_list_item_to_string(li: &ast::MetaItemInner) -> String {
     State::new().meta_list_item_to_string(li)
 }