aboutsummaryrefslogtreecommitdiff
path: root/engine/logic_monad.mli
diff options
context:
space:
mode:
authorLasse Blaauwbroek2020-11-22 11:22:52 +0100
committerLasse Blaauwbroek2020-12-06 16:56:07 +0100
commit00a09f2cc4a8f4b6baeca0a474e5ab4062ff0f97 (patch)
tree63884d6459014a889739ee9583ceb7d8d9d648e9 /engine/logic_monad.mli
parent7514bc25c6e8dffeb58ae9af0916dac83953d337 (diff)
Add support for high resolution timeout functions.
Diffstat (limited to 'engine/logic_monad.mli')
-rw-r--r--engine/logic_monad.mli2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/logic_monad.mli b/engine/logic_monad.mli
index 7784b38c80..5208469082 100644
--- a/engine/logic_monad.mli
+++ b/engine/logic_monad.mli
@@ -74,7 +74,7 @@ module NonLogical : sig
(** [try ... with ...] but restricted to {!Exception}. *)
val catch : 'a t -> (Exninfo.iexn -> 'a t) -> 'a t
- val timeout : int -> 'a t -> 'a option t
+ val timeout : float -> 'a t -> 'a option t
(** Construct a monadified side-effect. Exceptions raised by the argument are
wrapped with {!Exception}. *)