Fix grammar for rest args in lambda:.

Closes PR 10976

original commit: c2ac8046c45d4e807fb623f2048a4dbfabb6300d
This commit is contained in:
Sam Tobin-Hochstadt 2010-06-13 14:34:16 -04:00
parent fc607e7696
commit c6730fa63b

View File

@ -267,7 +267,8 @@ Type-annotated versions of
@defform/subs[(lambda: formals . body)
([formals ([v : t] ...)
([v : t] ... . [v : t])])]{
([v : t] ... . [v : t *])
([v : t] ... . [v : t ...])])]{
A function of the formal arguments @racket[v], where each formal
argument has the associated type. If a rest argument is present, then
it has type @racket[(Listof t)].}