combinators: Fix typo.
authorArun Isaac <arunisaac@systemreboot.net>
Sat, 4 Jul 2020 21:45:08 +0000 (03:15 +0530)
committerArun Isaac <arunisaac@systemreboot.net>
Sat, 4 Jul 2020 21:45:08 +0000 (03:15 +0530)
* guix/combinators.scm (fold2): Replace "a two lists" with "two lists".

guix/combinators.scm

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