Skip to content
This repository was archived by the owner on Oct 23, 2025. It is now read-only.

Commit 37cd45a

Browse files
committed
Fix copypasta error
1 parent 013639e commit 37cd45a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

output_derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub fn render_output(input: TokenStream) -> TokenStream {
3333
.collect(),
3434
_ => panic!("Unit structs not supported for now, sorry."),
3535
},
36-
_ => panic!("Only structs not supported for now, sorry."),
36+
_ => panic!("Only structs supported for now, sorry."),
3737
};
3838
let names = fields.iter().map(|(name, _)| name);
3939
let fields = fields.iter().map(|(_, ident)| ident);

0 commit comments

Comments
 (0)