Print the guided walkthrough skin to stdout.
(report: &TriageReport)
| 232 | |
| 233 | /// Print the guided walkthrough skin to stdout. |
| 234 | pub fn print_walkthrough(report: &TriageReport) { |
| 235 | print!("{}", walkthrough_text(report)); |
| 236 | } |
| 237 | |
| 238 | /// Aggregate (additions, deletions) across a change's embedded diff. |
| 239 | fn diff_stat_counts(c: &ChangeReport) -> (usize, usize) { |