1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

combinators: Fix typo.

* guix/combinators.scm (fold2): Replace "a two lists" with "two lists".
This commit is contained in:
Arun Isaac
2020-07-05 03:15:08 +05:30
parent ef0e7a5d33
commit 15c29a8a34

View File

@@ -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)