renamed Futures into Future

This commit is contained in:
Simon Cruanes 2013-03-20 15:27:17 +01:00
parent fac35bf61c
commit 772e6e6844
5 changed files with 3 additions and 3 deletions

2
_tags
View file

@ -1 +1 @@
<futures.*>: thread <future.*>: thread

View file

@ -30,7 +30,7 @@ let compute_size x =
let print_val fmt x = let print_val fmt x =
let o = Obj.repr x in let o = Obj.repr x in
let graph' = G.map ~edges:(fun i -> [`Label (string_of_int i)]) let graph' = G.map ~edges:(fun i -> [`Label (string_of_int i)])
~vertices:(fun v -> [`Label (string_of_int v)]) graph in ~vertices:(fun v -> [`Label (string_of_int v); `Shape "box"]) graph in
G.Dot.pp ~name:"value" graph' fmt (Enum.singleton o) G.Dot.pp ~name:"value" graph' fmt (Enum.singleton o)
let print_val_file filename x = let print_val_file filename x =

View file

@ -1 +1 @@
Futures Future