Skip to content

Commit

Permalink
fix bad error formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
xrstf committed Jul 24, 2023
1 parent 16f5637 commit 34cced8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func main() {

differ, err := diff.NewDiffer(differOpts, log)
if err != nil {
log.Fatalf("Failed to create differ: %w", err)
log.Fatalf("Failed to create differ: %v", err)
}

printer := diff.NewPrinter(differ, log)
Expand Down

0 comments on commit 34cced8

Please sign in to comment.