1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 11:50:28 +02:00

Typo fix: Use correct variable name in example

* doc/ref/api-control.texi
This commit is contained in:
Vijay Marupudi 2022-02-15 17:36:08 -05:00 committed by Daniel Llorens
parent 5a3086e681
commit 68aeffe8dd

View file

@ -154,7 +154,7 @@ documentation:
(define-syntax-rule (when test stmt stmt* ...)
(if test (begin stmt stmt* ...)))
(define-syntax-rule (unless condition stmt stmt* ...)
(define-syntax-rule (unless test stmt stmt* ...)
(if (not test) (begin stmt stmt* ...)))
@end example