Skip to content

Commit 77bb49d

Browse files
Fix generate_constructor_placeholder_arguments (#3789)
<!-- Reference any GitHub issues resolved by this PR --> Closes # ## Introduced changes <!-- A brief description of the changes --> - ## Checklist <!-- Make sure all of these are complete --> - [ ] Linked relevant issue - [ ] Updated relevant documentation - [ ] Added relevant tests - [ ] Performed self-review of the code - [ ] Added changes to `CHANGELOG.md`
1 parent 3916464 commit 77bb49d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/sncast/src/response/declare.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ fn generate_constructor_placeholder_arguments(constructor: AbiConstructor) -> St
224224
.split("::")
225225
.last()
226226
.expect("Failed to get last part of input type");
227-
format!("<{}: {})>", input.name, input_type)
227+
format!("<{}: {}>", input.name, input_type)
228228
})
229229
.collect::<Vec<String>>()
230230
.join(", ")

0 commit comments

Comments
 (0)