Fix grammar for rest args in lambda:.
Closes PR 10976 original commit: c2ac8046c45d4e807fb623f2048a4dbfabb6300d
This commit is contained in:
parent
fc607e7696
commit
c6730fa63b
|
@ -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)].}
|
||||
|
|
Loading…
Reference in New Issue
Block a user