Skip to content

Commit

Permalink
process: display: series: use change the delimiter char
Browse files Browse the repository at this point in the history
Change the delimiter char from + to ↳ when printing events in a series.

Suggested-by: Adrian Moreno <[email protected]>
Signed-off-by: Antoine Tenart <[email protected]>
  • Loading branch information
atenart committed Jul 5, 2024
1 parent ed86fe6 commit dc849b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion retis/src/process/display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ impl PrintSeries {
}

let mut res = Vec::new();
let mut delim = "+ ";
let mut delim = " ";
for line in lines.split('\n') {
res.push(format!("{}{}{}", " ".repeat(n_spaces), delim, line));
delim = " ";
Expand Down

0 comments on commit dc849b1

Please sign in to comment.