upstream: github.com/mirleft/ocaml-x509
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

mass replace Printf.sprintf/printf with Fmt.str/pr (merlint E200)

112 files across the monorepo. Printf.sprintf → Fmt.str,
Printf.printf → Fmt.pr for consistent formatting library usage.

+1 -1
+1 -1
tests/regression.ml
··· 133 133 let pp5 = ("RFC4514-vbox", Fmt.vbox (Dn.make_pp ~format:`RFC4514 ())) in 134 134 let check (pp_desc, pp) (dn_desc, dn) expected = 135 135 Alcotest.(check string) 136 - (Printf.sprintf "%s %s" pp_desc dn_desc) 136 + (Fmt.str "%s %s" pp_desc dn_desc) 137 137 expected (Fmt.to_to_string pp dn) 138 138 in 139 139 check pp1 dn1 {|CN=John Doe+Initials=J.D.+Initials=N.N.,O=Blanc|};