We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1537259 commit bf4d1dbCopy full SHA for bf4d1db
crates/bevy_macro_utils/src/member.rs
@@ -3,7 +3,7 @@ use syn::{Ident, Member};
3
/// Converts an optional identifier or index into a [`syn::Member`] variant.
4
///
5
/// 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.
+/// There is also [`syn::Fields::members`], but this method doesn't work when you're dealing with single / filtered fields.
7
8
/// Rust struct syntax allows for `Struct { foo: "string" }` with explicitly
9
/// named fields. It allows the `Struct { 0: "string" }` syntax when the struct
0 commit comments