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}