summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorVijay Marupudi <vijay@vijaymarupudi.com>2022-02-15 17:36:08 -0500
committerDaniel Llorens <lloda@sarc.name>2022-02-23 09:45:17 +0100
commit68aeffe8dda02ae3248a9fc035cea73384ee7b6c (patch)
treebbfcf2876fadfb281eda6be45f39ebedba1d9e19 /doc
parent5a3086e6814497b23dba66167c698bc0564193e0 (diff)
downloadguile-68aeffe8dda02ae3248a9fc035cea73384ee7b6c.tar.gz
Typo fix: Use correct variable name in example
* doc/ref/api-control.texi
Diffstat (limited to 'doc')
-rw-r--r--doc/ref/api-control.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ref/api-control.texi b/doc/ref/api-control.texi
index 9860457fa..88dea5623 100644
--- a/doc/ref/api-control.texi
+++ b/doc/ref/api-control.texi
@@ -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