Skip to content

Commit

Permalink
🐛 Fix array syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
wrenger committed Feb 5, 2024
1 parent 92928be commit 3d41826
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,8 @@ fn parse_field(
bits: ty_bits,
ty: ty.clone(),
default: quote!(),
into: quote!(#ty::into_bits(this)),
from: quote!(#ty::from_bits(this)),
into: quote!(<#ty>::into_bits(this)),
from: quote!(<#ty>::from_bits(this)),
access,
},
};
Expand Down

0 comments on commit 3d41826

Please sign in to comment.