Skip to content

Commit bf4d1db

Browse files
committed
docs
1 parent 1537259 commit bf4d1db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_macro_utils/src/member.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use syn::{Ident, Member};
33
/// Converts an optional identifier or index into a [`syn::Member`] variant.
44
///
55
/// This is useful for when you want to access a field inside a `quote!` block regardless of whether it is an identifier or an index.
6-
/// There is also [syn::Field::members], but this method doesn't work when you're dealing with single / filtered fields.
6+
/// There is also [`syn::Fields::members`], but this method doesn't work when you're dealing with single / filtered fields.
77
///
88
/// Rust struct syntax allows for `Struct { foo: "string" }` with explicitly
99
/// named fields. It allows the `Struct { 0: "string" }` syntax when the struct

0 commit comments

Comments
 (0)