We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ad62a1 commit f68daa3Copy full SHA for f68daa3
src/patch.ml
@@ -26,7 +26,7 @@ let unified_diff ~mine_no_nl ~their_no_nl hunk =
26
(if their_no_nl then no_nl_str else []))
27
28
let pp_hunk ~mine_no_nl ~their_no_nl ppf hunk =
29
- Format.fprintf ppf "@@@@ -%d,%d +%d,%d @@@@\n%s\n"
+ Format.fprintf ppf "@@ -%d,%d +%d,%d @@\n%s\n"
30
hunk.mine_start hunk.mine_len hunk.their_start hunk.their_len
31
(unified_diff ~mine_no_nl ~their_no_nl hunk)
32
0 commit comments