guix-commits
[Top][All Lists]
Advanced

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

branch master updated: combinators: Fix typo.


From: guix-commits
Subject: branch master updated: combinators: Fix typo.
Date: Sat, 04 Jul 2020 18:08:49 -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 15c29a8  combinators: Fix typo.
15c29a8 is described below

commit 15c29a8a342fe13819f5d96abab796f14f2f7b18
Author: Arun Isaac <arunisaac@systemreboot.net>
AuthorDate: Sun Jul 5 03:15:08 2020 +0530

    combinators: Fix typo.
    
    * guix/combinators.scm (fold2): Replace "a two lists" with "two lists".
---
 guix/combinators.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/combinators.scm b/guix/combinators.scm
index 4707b59..88ad09d 100644
--- a/guix/combinators.scm
+++ b/guix/combinators.scm
@@ -47,7 +47,7 @@
              (lambda (result1 result2)
                (loop result1 result2 (cdr lst)))))))
     ((proc seed1 seed2 lst1 lst2)
-     "Like `fold', but with a two lists and two seeds."
+     "Like `fold', but with two lists and two seeds."
      (let loop ((result1 seed1)
                 (result2 seed2)
                 (lst1    lst1)



reply via email to

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