Skip to content

Commit

Permalink
Pretty printer: fix a stray semicolon
Browse files Browse the repository at this point in the history
A bonus fix, not directly discovered in #1795 but still obviously a
problem.
  • Loading branch information
sampsyo committed Dec 4, 2023
1 parent 0f0aa57 commit a3bf64a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion calyx-ir/src/printer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ impl Printer {
write!(f, "\n{})", " ".repeat(indent_level))?;
}
if let Some(group) = comb_group {
writeln!(f, " with {};", group.borrow().name)?;
write!(f, " with {}", group.borrow().name)?;
}
writeln!(f, ";")
}
Expand Down

0 comments on commit a3bf64a

Please sign in to comment.