From 3ccb3e16f72f0aed2603996b081ffccb4c53202d Mon Sep 17 00:00:00 2001 From: Nino Annighoefer Date: Sat, 26 Nov 2022 09:53:17 +0000 Subject: [PATCH] Fix typos --- src/core/CCSeq.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/CCSeq.mli b/src/core/CCSeq.mli index 210a60e6..2552bb8b 100644 --- a/src/core/CCSeq.mli +++ b/src/core/CCSeq.mli @@ -39,14 +39,14 @@ val repeat : ?n:int -> 'a -> 'a t then [x] is repeated forever. *) val forever : (unit -> 'a) -> 'a t -(** [forever f] corresponds to the infinit sequence containing all the [f ()]. +(** [forever f] corresponds to the infinite sequence containing all the [f ()]. @since 3.10 *) val cycle : 'a t -> 'a t (** Cycle through the iterator infinitely. The iterator shouldn't be empty. *) val iterate : ('a -> 'a) -> 'a -> 'a t -(** [iterate f a] corresponds to the infinit sequence containing [a], [f a], [f (f a)], +(** [iterate f a] corresponds to the infinite sequence containing [a], [f a], [f (f a)], ...] @since 3.10 *)