guix-commits
[Top][All Lists]
Advanced

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

branch master updated: discovery: Fix typo.


From: guix-commits
Subject: branch master updated: discovery: Fix typo.
Date: Sun, 05 Jul 2020 06:39:37 -0400

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

arunisaac pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 9e85f65  discovery: Fix typo.
9e85f65 is described below

commit 9e85f652cb9df3393615b3dafcb0f7431b794248
Author: Arun Isaac <arunisaac@systemreboot.net>
AuthorDate: Sun Jul 5 03:44:05 2020 +0530

    discovery: Fix typo.
    
    * guix/discovery.scm (fold-module-public-variables*): In the docstring,
    replace (PROC MODULE SYMBOL VARIABLE) with (PROC MODULE SYMBOL VARIABLE
    RESULT).
---
 guix/discovery.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/guix/discovery.scm b/guix/discovery.scm
index 7c5fed7..b84b9ff 100644
--- a/guix/discovery.scm
+++ b/guix/discovery.scm
@@ -153,9 +153,9 @@ SUB-DIRECTORY. Modules are listed in the order they appear 
on the path."
   (reverse (fold-modules cons '() path #:warn warn)))
 
 (define (fold-module-public-variables* proc init modules)
-  "Call (PROC MODULE SYMBOL VARIABLE) for each variable exported by one of 
MODULES,
-using INIT as the initial value of RESULT.  It is guaranteed to never traverse
-the same object twice."
+  "Call (PROC MODULE SYMBOL VARIABLE RESULT) for each variable exported by one
+of MODULES, using INIT as the initial value of RESULT.  It is guaranteed to
+never traverse the same object twice."
   ;; Here SEEN is populated by variables; if two different variables refer to
   ;; the same object, we still let them through.
   (identity                                       ;discard second return value



reply via email to

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