Skip to content

Commit 96c42a7

Browse files
committed
Fix diff
1 parent 650fd27 commit 96c42a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

hooks/jsonnet-fmt-hook/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ func diffJsonnetFmt(f string) (*FileDiff, error) {
167167
}
168168

169169
dmp := diffmatchpatch.New()
170-
diffs := dmp.DiffMain(after, before, false)
170+
diffs := dmp.DiffMain(before, after, false)
171171

172172
return summarizeDiff(diffs), err
173173
}

0 commit comments

Comments
 (0)