Skip to content

Commit

Permalink
refactor: add Δ in the Net column header
Browse files Browse the repository at this point in the history
Just for clarity that this is the net change.
  • Loading branch information
lukehsiao committed Nov 24, 2022
1 parent 863efa6 commit 6369d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ struct Stat {
insertions: usize,
#[tabled(rename = "Deletions", display_with = "display_del")]
deletions: usize,
#[tabled(rename = "Net", display_with = "display_net")]
#[tabled(rename = "Net Δ", display_with = "display_net")]
net: i64,
}

Expand Down

0 comments on commit 6369d04

Please sign in to comment.