r7rs-small-texinfo

Unnamed repository; edit this file 'description' to name the repository.
git clone https://kaka.farm/~git/r7rs-small-texinfo
Log | Files | Refs | README | LICENSE

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:
Mdoc/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