Skip to content

Commit

Permalink
fix serialization bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sokra committed Aug 13, 2024
1 parent 64c256b commit e931704
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ pub fn value_trait(args: TokenStream, input: TokenStream) -> TokenStream {
Some(turbo_fn.static_block(&native_function_id_ident))
} else {
trait_methods.push(quote! {
trait_type.register_trait_method::<(#(#arg_types),*)>(stringify!(#ident).into());
trait_type.register_trait_method::<(#(#arg_types,)*)>(stringify!(#ident).into());
});
None
};
Expand Down

0 comments on commit e931704

Please sign in to comment.