commit 10ad74587ec818185d4429f4927a28f0f4747bb5 parent 62aa3f33a28df0274a60e552c779852d56494a18 Author: Yuval Langer <yuval.langer@gmail.com> Date: Tue, 5 Mar 2024 12:56:56 +0200 Remove unneed left parenthesis. Diffstat:
M | doc/r7rs-small/primitive-expressions.texinfo | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/r7rs-small/primitive-expressions.texinfo b/doc/r7rs-small/primitive-expressions.texinfo @@ -150,7 +150,7 @@ results of the last expression in the body will be returned as the results of the procedure call. @lisp -((lambda (x) (+ x x)) @result{} @r{a procedure} +(lambda (x) (+ x x)) @result{} @r{a procedure} ((lambda (x) (+ x x)) 4) @result{} 8 @end lisp