You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can a rule to warn about the following kind of Format.fprintf usages be useful?
let f fmt s i =
...
Format.fprintf fmt "Hi!";
Format.fprintf fmt "%s" s
(* Use instead: Format.pp_print_string fmt s *)
Format.fprintf fmt "%d" i
(* Use instead: Format.pp_print_int fmt i *)
The text was updated successfully, but these errors were encountered:
Can a rule to warn about the following kind of
Format.fprintf
usages be useful?The text was updated successfully, but these errors were encountered: