mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
Fix more typos
This commit is contained in:
parent
3ccb3e16f7
commit
46e53ec85f
1 changed files with 2 additions and 2 deletions
|
|
@ -173,7 +173,7 @@ val scan : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a t
|
|||
|
||||
val flat_map : ('a -> 'b t) -> 'a t -> 'b t
|
||||
val concat_map : ('a -> 'b t) -> 'a t -> 'b t
|
||||
(** Aliass of {!flat_map}
|
||||
(** Alias of {!flat_map}
|
||||
@since 3.10 *)
|
||||
|
||||
val filter_map : ('a -> 'b option) -> 'a t -> 'b t
|
||||
|
|
@ -195,7 +195,7 @@ val ( --^ ) : int -> int -> int t
|
|||
(** {2 Operations on two Collections} *)
|
||||
|
||||
val fold2 : ('acc -> 'a -> 'b -> 'acc) -> 'acc -> 'a t -> 'b t -> 'acc
|
||||
(** Fold on two collections at once. Stop at soon as one of them ends. *)
|
||||
(** Fold on two collections at once. Stop as soon as one of them ends. *)
|
||||
|
||||
val fold_left2 : ('acc -> 'a -> 'b -> 'acc) -> 'acc -> 'a t -> 'b t -> 'acc
|
||||
(** Alias for {!fold2}.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue