diff --git a/src/MRand.ml b/src/MRand.ml index dba83ba..09c0149 100644 --- a/src/MRand.ml +++ b/src/MRand.ml @@ -10,7 +10,7 @@ let bind (sa : 'a t) (f : 'a -> 'b t) : 'b t = Utils.not_yet "MRand.bind" (sa, f) let delay (f : unit -> 'a t) : 'a t = - Utils.not_yet "MRand.delay" (f ()) + Utils.not_yet "MRand.delay" f let sum (li : 'a t list) : 'a t = Utils.not_yet "MRand.sum" li diff --git a/src/MSeq.ml b/src/MSeq.ml index 7f39da0..3e7ddd0 100644 --- a/src/MSeq.ml +++ b/src/MSeq.ml @@ -10,7 +10,7 @@ let bind (sa : 'a t) (f : 'a -> 'b t) : 'b t = Utils.not_yet "MSeq.bind" (sa, f) let delay (f : unit -> 'a t) : 'a t = - Utils.not_yet "MSeq.delay" (f ()) + Utils.not_yet "MSeq.delay" f let sum (li : 'a t list) : 'a t = Utils.not_yet "MSeq.sum" li