mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Typo fix: Use correct variable name in example
* doc/ref/api-control.texi
This commit is contained in:
parent
5a3086e681
commit
68aeffe8dd
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue