From 25d42d5b8c7f2fb3a191dfbf5162e0ca682fbeba Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Tue, 29 Aug 2023 09:05:01 -0400 Subject: [PATCH] doc --- src/fut.mli | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/fut.mli b/src/fut.mli index bc9c2658..f5dc5013 100644 --- a/src/fut.mli +++ b/src/fut.mli @@ -214,11 +214,12 @@ module Infix_local : INFIX include INFIX -(** Make infix combinators *) +(** Make infix combinators, with intermediate computations running on the given pool. *) module Infix (_ : sig val pool : Runner.t end) : INFIX val infix : Runner.t -> (module INFIX) -(** [infix runner] makes a new infix module. +(** [infix runner] makes a new infix module with intermediate computations + running on the given runner.. @since 0.2 *)