From 938c7cb90abddb36f31e042c3e8501485c03f0d9 Mon Sep 17 00:00:00 2001 From: Simon Cruanes Date: Sat, 25 Sep 2021 20:50:04 -0400 Subject: [PATCH] more doc --- src/core/CCParse.mli | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/CCParse.mli b/src/core/CCParse.mli index 1bcdd4b7..78f01389 100644 --- a/src/core/CCParse.mli +++ b/src/core/CCParse.mli @@ -394,7 +394,8 @@ val many_until : until:_ t -> 'a t -> 'a list t (** [many_until ~until p] parses as many [p] as it can until the [until] parser successfully returns. If [p] fails before that then [many_until ~until p] fails as well. - Typically [until] can be a closing ')' or another termination condition. + Typically [until] can be a closing ')' or another termination condition, + and what is consumed by [until] is also consumed by [many_until ~until p]. {b EXPERIMENTAL}