From f6c9f058e42a9479831e21866d4045cb29a8225f Mon Sep 17 00:00:00 2001 From: Leif Andersen Date: Wed, 20 Jul 2016 14:00:10 -0400 Subject: [PATCH] Add documentation for syntax/parse/lib/function-header --- pkgs/racket-doc/syntax/scribblings/parse/lib.scrbl | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/racket-doc/syntax/scribblings/parse/lib.scrbl b/pkgs/racket-doc/syntax/scribblings/parse/lib.scrbl index c768953e83..f3571e8b2f 100644 --- a/pkgs/racket-doc/syntax/scribblings/parse/lib.scrbl +++ b/pkgs/racket-doc/syntax/scribblings/parse/lib.scrbl @@ -144,3 +144,16 @@ Literal set containing the identifiers for fully-expanded code Note that the literal-set uses the names @racket[#%plain-lambda] and @racket[#%plain-app], not @racket[lambda] and @racket[#%app]. } + +@section{Function Headers} +@defmodule[syntax/parse/lib/function-header] + +@defstxclass[function-header]{ + Matches a the formals found in function headers. Including + keyword and rest arguments.} +@defstxclass[formal]{ + Matches a single formal that can be used in a function + header.} +@defstxclass[formals]{ + Matches a list of formals that would be used in a function + header.}