From b672eb0e6d09e3ca0a74d5310522cd87364567b7 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Sun, 8 Apr 2018 18:42:11 -0500 Subject: [PATCH] fix(CCListLabels): fix `@since` annotation --- src/core/CCListLabels.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/CCListLabels.mli b/src/core/CCListLabels.mli index 4a86db5a..49be0165 100644 --- a/src/core/CCListLabels.mli +++ b/src/core/CCListLabels.mli @@ -123,12 +123,12 @@ val sublists_of_len : val intersperse : 'a -> 'a list -> 'a list (** Insert the first argument between every element of the list. - @since 2.1 *) + @since NEXT_RELEASE *) val interleave : 'a list -> 'a list -> 'a list (** [interleave [x1…xn] [y1…ym]] is [x1,y1,x2,y2,…] and finishes with the suffix of the longest list. - @since 2.1 *) + @since NEXT_RELEASE *) val pure : 'a -> 'a t (** [pure] is [return]. *)