From b0cad81f2daf40602bb87b0f55c43d2a3165850b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Thu, 13 Aug 2015 00:52:49 +0200 Subject: [PATCH] Clarification and typo in the documentation concerning the error messages for the ~between pattern in syntax/parse. --- pkgs/racket-doc/syntax/scribblings/parse/patterns.scrbl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/racket-doc/syntax/scribblings/parse/patterns.scrbl b/pkgs/racket-doc/syntax/scribblings/parse/patterns.scrbl index a01b5cbbb9..f2af43fc33 100644 --- a/pkgs/racket-doc/syntax/scribblings/parse/patterns.scrbl +++ b/pkgs/racket-doc/syntax/scribblings/parse/patterns.scrbl @@ -926,11 +926,13 @@ times in the entire repetition. If the pattern is matched too few times, then the ellipsis pattern fails with the message either @racket[too-few-message-expr] or -@racketvalfont{"too few occurrences of @racket[name-expr]"}. +@racketvalfont{"too few occurrences of @racket[name-expr]"}, when +@racket[name-expr] is provided. If the pattern is chosen too many times, then the ellipsis pattern fails with the message either @racket[too-many-message-expr] or -@racketvalfont{"too few occurrences of @racket[name-expr]"}. +@racketvalfont{"too many occurrences of @racket[name-expr]"}, when +@racket[name-expr] is provided. }