Compare commits

...

7 Commits

2 changed files with 5 additions and 3 deletions

View File

@ -55,7 +55,7 @@ popular among Racketeers as well.
name @tt{geiser}.}
@item{Emacs ships with a major mode for Scheme, @tt{scheme-mode},
that while not as featureful as the above options, but works
that while not as featureful as the above options, works
reasonably well for editing Racket code. However, this mode
does not provide support for Racket-specific forms.}

View File

@ -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.
}