Skip to content

Commit

Permalink
Merge branch 'line-changes' of github.com:johannaschwarz/lazygit into…
Browse files Browse the repository at this point in the history
… line-changes
  • Loading branch information
johannaschwarz committed Nov 30, 2024
2 parents 90f67db + e520b82 commit ae774f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/gui/presentation/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ func formatLineChanges(linesAdded, linesDeleted int) string {
output := ""

if linesAdded != 0 {
output += style.FgGreen.Sprint("+" + strconv.Itoa(linesAdded))
output += style.FgGreen.Sprintf("+%d", linesAdded)
}

if linesDeleted != 0 {
Expand Down

0 comments on commit ae774f0

Please sign in to comment.