diff options
| author | Arnaud Spiwack | 2016-11-08 08:54:35 +0100 |
|---|---|---|
| committer | Arnaud Spiwack | 2016-11-08 08:54:35 +0100 |
| commit | ffc59564a143b2ec9bbf33729271bb1cce19c6f9 (patch) | |
| tree | 156f9c32001f7169d082d0a39cc435bc5fa7ff5f | |
| parent | 0f5e89ec54bc613f59ce971e6a95ed1161ffc37b (diff) | |
Complete a truncated comment
Introduce by myself, I'm afraid, in #308. Noticed by PMP during the
review, but I forgot to fix it before merge.
| -rw-r--r-- | lib/monad.mli | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/monad.mli b/lib/monad.mli index f7de71f53a..7b0a3e600f 100644 --- a/lib/monad.mli +++ b/lib/monad.mli @@ -66,7 +66,8 @@ module type ListS = sig its second argument in a tail position. *) val iter : ('a -> unit t) -> 'a list -> unit t - (** Like the regular {!CList.map_filter}. The monadic effects are threaded left*) + (** Like the regular {!CList.map_filter}. The monadic effects are + threaded left to right. *) val map_filter : ('a -> 'b option t) -> 'a list -> 'b list t |
