mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
parent
bcb90de435
commit
faeae964fc
1 changed files with 2 additions and 3 deletions
|
|
@ -129,13 +129,12 @@ module Poly = struct
|
|||
let first = ref true in
|
||||
Hashtbl.iter
|
||||
(fun k v ->
|
||||
if !first then first := false else Format.pp_print_string fmt ", ";
|
||||
if !first then first := false else Format.fprintf fmt ",@ ";
|
||||
pp_k fmt k;
|
||||
Format.pp_print_string fmt " -> ";
|
||||
pp_v fmt v;
|
||||
Format.pp_print_cut fmt ()
|
||||
) m;
|
||||
Format.fprintf fmt "}@]"
|
||||
Format.fprintf fmt "@,}@]"
|
||||
end
|
||||
|
||||
include Poly
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue