We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa347d0 commit be13a83Copy full SHA for be13a83
2 files changed
pdg/src/graph.rs
@@ -230,6 +230,7 @@ impl Display for Graph {
230
.collect::<Vec<_>>();
231
writeln!(f, "g {{")?;
232
for line in pad_columns(&lines, sep, " ") {
233
+ let line = line.trim_end();
234
writeln!(f, "\t{line}")?;
235
}
236
write!(f, "}}")?;
0 commit comments