From a601c143d6ecbe6006a7e751382b1e18406027c6 Mon Sep 17 00:00:00 2001 From: rand00 Date: Thu, 3 Feb 2022 20:15:14 +0100 Subject: [PATCH] Views.Job_build: Fixed for 80-col rule --- lib/views.ml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/views.ml b/lib/views.ml index 98d254d..347864a 100644 --- a/lib/views.ml +++ b/lib/views.ml @@ -643,7 +643,8 @@ let opam_diffs diffs = (match pd.Opamdiff.build with None -> [] | Some a -> let l, r = Opamdiff.commands_to_strings a in [ - H.h5 [ H.txt "build instruction (without common prefix) modifications, old:" ] ; + H.h5 [ H.txt "build instruction (without common prefix) \ + modifications, old:" ] ; H.code (List.concat_map (fun s -> [ H.txt s ; H.br () ]) l) ; H.h5 [ H.txt "new" ] ; H.code (List.concat_map (fun s -> [ H.txt s ; H.br () ]) r) @@ -651,7 +652,8 @@ let opam_diffs diffs = (match pd.Opamdiff.install with None -> [] | Some a -> let l, r = Opamdiff.commands_to_strings a in [ - H.h5 [ H.txt "install instruction (without common prefix) modifications, old:" ] ; + H.h5 [ H.txt "install instruction (without common prefix) \ + modifications, old:" ] ; H.code (List.concat_map (fun s -> [ H.txt s ; H.br () ]) l) ; H.h5 [ H.txt "new" ] ; H.code (List.concat_map (fun s -> [ H.txt s ; H.br () ]) r)