From 5fa2c17c976db688f37f4cc2778db2a022cc19af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Istv=C3=A1n=20Donk=C3=B3?= Date: Mon, 27 Oct 2025 16:12:13 +0100 Subject: [PATCH] fix: insert missing symbol into range doc comments --- src/core/CCSeq.mli | 2 +- src/data/CCFQueue.mli | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/CCSeq.mli b/src/core/CCSeq.mli index 26068b6f..a26fa1a1 100644 --- a/src/core/CCSeq.mli +++ b/src/core/CCSeq.mli @@ -183,7 +183,7 @@ val ( -- ) : int -> int -> int t [a] and [b] (therefore, never empty). *) val ( --^ ) : int -> int -> int t -(** [a -- b] is the integer range from [a] to [b], where [b] is excluded. *) +(** [a --^ b] is the integer range from [a] to [b], where [b] is excluded. *) (** {2 Operations on two Collections} *) diff --git a/src/data/CCFQueue.mli b/src/data/CCFQueue.mli index c08574ab..eaaad54b 100644 --- a/src/data/CCFQueue.mli +++ b/src/data/CCFQueue.mli @@ -139,7 +139,7 @@ val ( -- ) : int -> int -> int t @since 0.10 *) val ( --^ ) : int -> int -> int t -(** [a -- b] is the integer range from [a] to [b], where [b] is excluded. +(** [a --^ b] is the integer range from [a] to [b], where [b] is excluded. @since 0.17 *) val pp : 'a printer -> 'a t printer