Skip to content

Commit

Permalink
Fixed merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
IBims1NicerTobi committed Jan 12, 2025
1 parent 5306c09 commit 58c00f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/to_string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,11 +331,11 @@ where
)
.unwrap();
}
ConcreteTemplateArg::Value(typed_value, how_do_we_know_the_template_arg) => {
ConcreteTemplateArg::Value(value, how_do_we_know_the_template_arg) => {
write!(
result,
"{} /* {} */,\n",
typed_value.value.to_string(),
value.to_string(),
how_do_we_know_the_template_arg.to_str()
)
.unwrap();
Expand Down

0 comments on commit 58c00f5

Please sign in to comment.