Fix typo in lists.nix

This commit is contained in:
Robert Hensing
2019-09-06 20:02:36 +02:00
committed by GitHub
parent 194b732bf6
commit a0b743f47c

View File

@@ -88,7 +88,7 @@ rec {
/* Strict version of `foldl`.
The difference is that evaluation is forced upon access. Usually used
with small whole results (in contract with lazily-generated list or large
with small whole results (in contrast with lazily-generated list or large
lists where only a part is consumed.)
Type: foldl' :: (b -> a -> b) -> b -> [a] -> b