From 243f81ae886c96d9f687a6a205d23d9aeb60f4bf Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Mon, 7 Mar 2016 14:18:25 +0100 Subject: [PATCH] update @since tags --- sequence.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sequence.mli b/sequence.mli index 83f4753..0cf036e 100644 --- a/sequence.mli +++ b/sequence.mli @@ -204,13 +204,13 @@ val group : ?eq:('a -> 'a -> bool) -> 'a t -> 'a list t val group_succ_by : ?eq:('a -> 'a -> bool) -> 'a t -> 'a list t (** Group equal consecutive elements. Synonym to {!group}. - @since NEXT_RELEASE *) + @since 0.6 *) val group_by : ?hash:('a -> int) -> ?eq:('a -> 'a -> bool) -> 'a t -> 'a list t (** Group equal elements, disregarding their order of appearance. The result sequence is traversable as many times as required. - @since NEXT_RELEASE *) + @since 0.6 *) val uniq : ?eq:('a -> 'a -> bool) -> 'a t -> 'a t (** Remove consecutive duplicate elements. Basically this is