summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Hensing <roberth@users.noreply.github.com>2019-09-06 20:02:36 +0200
committerGitHub <noreply@github.com>2019-09-06 20:02:36 +0200
commita0b743f47c179e3fe07e6ef617251678a1b60263 (patch)
tree4dea01f1887a548d0dd0a7fbd7810b2ef145cc5b
parent194b732bf6ec9dd23b03afda1f7108e77042ca4b (diff)
downloadnixpkgs-a0b743f47c179e3fe07e6ef617251678a1b60263.tar
nixpkgs-a0b743f47c179e3fe07e6ef617251678a1b60263.tar.gz
nixpkgs-a0b743f47c179e3fe07e6ef617251678a1b60263.tar.bz2
nixpkgs-a0b743f47c179e3fe07e6ef617251678a1b60263.tar.lz
nixpkgs-a0b743f47c179e3fe07e6ef617251678a1b60263.tar.xz
nixpkgs-a0b743f47c179e3fe07e6ef617251678a1b60263.tar.zst
nixpkgs-a0b743f47c179e3fe07e6ef617251678a1b60263.zip
Fix typo in lists.nix
-rw-r--r--lib/lists.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lists.nix b/lib/lists.nix
index e4fcf959b60..d671dd761e6 100644
--- a/lib/lists.nix
+++ b/lib/lists.nix
@@ -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