guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch main updated: Typo fix: Use correct variable name


From: Daniel Llorens
Subject: [Guile-commits] branch main updated: Typo fix: Use correct variable name in example
Date: Wed, 23 Feb 2022 03:45:43 -0500

This is an automated email from the git hooks/post-receive script.

lloda pushed a commit to branch main
in repository guile.

The following commit(s) were added to refs/heads/main by this push:
     new 68aeffe8d Typo fix: Use correct variable name in example
68aeffe8d is described below

commit 68aeffe8dda02ae3248a9fc035cea73384ee7b6c
Author: Vijay Marupudi <vijay@vijaymarupudi.com>
AuthorDate: Tue Feb 15 17:36:08 2022 -0500

    Typo fix: Use correct variable name in example
    
    * doc/ref/api-control.texi
---
 doc/ref/api-control.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]