Skip to content

Commit dc46e64

Browse files
committed
fix(stackable-versioned): Add missing trailing comma in generated code
1 parent 045e980 commit dc46e64

File tree

1 file changed

+1
-1
lines changed
  • crates/stackable-versioned-macros/src/codegen/item

1 file changed

+1
-1
lines changed

crates/stackable-versioned-macros/src/codegen/item/field.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ impl VersionedField {
264264

265265
if self.nested {
266266
Some(quote! {
267-
#field_ident: #from_struct_ident.#field_ident.tracking_into(status, &#json_path_ident)
267+
#field_ident: #from_struct_ident.#field_ident.tracking_into(status, &#json_path_ident),
268268
})
269269
} else {
270270
Some(quote! {

0 commit comments

Comments
 (0)