summaryrefslogtreecommitdiff
path: root/doc/ref/match.texi
diff options
context:
space:
mode:
authorPaul Morris <paul@paulwmorris.com>2018-11-17 08:54:06 -0500
committerLudovic Courtès <ludo@gnu.org>2019-06-24 15:24:33 +0200
commitf2c11dc1815880a767b43fa5ad08badd4761a5c0 (patch)
tree032c746c5322c538bc8d23d57ae761205c776b26 /doc/ref/match.texi
parent77c4f2f48d3b71117ad60965d1055988f4a6f734 (diff)
doc: Fix argument list in match-lambda docs
* doc/ref/match.texi: Fix argument list for match-lambda. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'doc/ref/match.texi')
-rw-r--r--doc/ref/match.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/match.texi b/doc/ref/match.texi
index 0fc5105d1..f5ea43118 100644
--- a/doc/ref/match.texi
+++ b/doc/ref/match.texi
@@ -216,7 +216,7 @@ one-element list containing a @var{person} whose first slot is
The @code{(ice-9 match)} module also provides the following convenient
syntactic sugar macros wrapping around @code{match}.
-@deffn {Scheme Syntax} match-lambda exp clause1 clause2 @dots{}
+@deffn {Scheme Syntax} match-lambda clause1 clause2 @dots{}
Create a procedure of one argument that matches its argument against
each clause, and returns the result of evaluating the corresponding
expressions.
@@ -236,7 +236,7 @@ expressions.
@result{} world
@end example
-@deffn {Scheme Syntax} match-lambda* exp clause1 clause2 @dots{}
+@deffn {Scheme Syntax} match-lambda* clause1 clause2 @dots{}
Create a procedure of any number of arguments that matches its argument
list against each clause, and returns the result of evaluating the
corresponding expressions.