This is the mail archive of the kawa@sources.redhat.com mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

kawa.texi patch


Typo fix in the let-values doc.

Regards,
Chris Dean

Index: kawa.texi
===================================================================
RCS file: /cvs/kawa/kawa/doc/kawa.texi,v
retrieving revision 1.152
diff -u -w -r1.152 kawa.texi
--- kawa.texi	11 Aug 2004 21:33:04 -0000	1.152
+++ kawa.texi	6 Oct 2004 07:25:50 -0000
@@ -1331,7 +1331,7 @@
 error for an @var{expression} to return a number of values that does not
 match its corresponding @var{formals}.
 @example
-(let-values ((a b . c) (values 1 2 3 4)))
+(let-values (((a b . c) (values 1 2 3 4)))
   (list a b c))            --> (1 2 (3 4)) 
 
 (let ((a 'a) (b 'b) (x 'x) (y 'y))


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]