Skip to content

Commit 1537259

Browse files
committed
fmt
1 parent 4d3a1ce commit 1537259

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/bevy_macro_utils/src/member.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ use syn::{Ident, Member};
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.
66
/// There is also [syn::Field::members], but this method doesn't work when you're dealing with single / filtered fields.
7-
///
7+
///
88
/// Rust struct syntax allows for `Struct { foo: "string" }` with explicitly
99
/// named fields. It allows the `Struct { 0: "string" }` syntax when the struct
1010
/// is declared as a tuple struct.
11-
///
11+
///
1212
/// # Example
1313
/// ```rust
1414
/// use syn::{Ident, parse_str, DeriveInput, Data, DataStruct};

0 commit comments

Comments
 (0)