guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 03/03: doc: Fix argument list in match-lambda docs


From: Ludovic Courtès
Subject: [Guile-commits] 03/03: doc: Fix argument list in match-lambda docs
Date: Mon, 24 Jun 2019 09:25:36 -0400 (EDT)

civodul pushed a commit to branch stable-2.2
in repository guile.

commit f2c11dc1815880a767b43fa5ad08badd4761a5c0
Author: Paul Morris <address@hidden>
Date:   Sat Nov 17 08:54:06 2018 -0500

    doc: Fix argument list in match-lambda docs
    
    * doc/ref/match.texi: Fix argument list for match-lambda.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 doc/ref/match.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/ref/match.texi b/doc/ref/match.texi
index 0fc5105..f5ea431 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.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]