From 15c29a8a342fe13819f5d96abab796f14f2f7b18 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 5 Jul 2020 03:15:08 +0530 Subject: [PATCH] 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 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)