Skip to content

Commit

Permalink
Fix one more issue
Browse files Browse the repository at this point in the history
Signed-off-by: Tej Chajed <[email protected]>
  • Loading branch information
tchajed committed Jul 21, 2023
1 parent 437db79 commit c753dbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fly/src/printer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ fn signature(sig: &Signature) -> String {
.sorts
.iter()
// end with trailing newline if there are any sorts
.map(|s| format!("sort {}\n", s))
.map(|s| format!("sort {s}\n"))
.collect::<Vec<_>>()
.join("");
let relations = sig
Expand Down

0 comments on commit c753dbf

Please sign in to comment.