aboutsummaryrefslogtreecommitdiff
path: root/guix/combinators.scm
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2020-07-05 03:15:08 +0530
committerArun Isaac <arunisaac@systemreboot.net>2020-07-05 03:15:08 +0530
commit15c29a8a342fe13819f5d96abab796f14f2f7b18 (patch)
tree588bb6342bf86012f430f557ad60475754a09c8d /guix/combinators.scm
parentef0e7a5d332f0947adb3556cc5a8c8836eac0b6c (diff)
downloadguix-15c29a8a342fe13819f5d96abab796f14f2f7b18.tar
guix-15c29a8a342fe13819f5d96abab796f14f2f7b18.tar.gz
combinators: Fix typo.
* guix/combinators.scm (fold2): Replace "a two lists" with "two lists".
Diffstat (limited to 'guix/combinators.scm')
-rw-r--r--guix/combinators.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/combinators.scm b/guix/combinators.scm
index 4707b59363..88ad09dbe6 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)