summary refs log tree commit diff
path: root/pkgs/lib/modules.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-09-16 11:37:07 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-09-16 11:37:07 +0000
commitd7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf (patch)
tree03c9678b88c0608456e6d6edc09df29c7fc91d39 /pkgs/lib/modules.nix
parent5d6ee123ed7cea0ba4df0e78ddf8a54d4b9040c8 (diff)
downloadnixpkgs-d7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf.tar
nixpkgs-d7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf.tar.gz
nixpkgs-d7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf.tar.bz2
nixpkgs-d7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf.tar.lz
nixpkgs-d7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf.tar.xz
nixpkgs-d7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf.tar.zst
nixpkgs-d7d80e8fdcd43e9f9f1f1cc2e79149932d4cbecf.zip
* Typos.
svn path=/nixpkgs/trunk/; revision=17182
Diffstat (limited to 'pkgs/lib/modules.nix')
-rw-r--r--pkgs/lib/modules.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/lib/modules.nix b/pkgs/lib/modules.nix
index 09f096eba18..81a4c43b2a9 100644
--- a/pkgs/lib/modules.nix
+++ b/pkgs/lib/modules.nix
@@ -159,10 +159,10 @@ rec {
         );
 
       errorSource = modules:
-        "The error may comes from the following files:\n" + (
+        "The error may come from the following files:\n" + (
           lib.concatStringsSep "\n" (
             map (m:
-              if m ? key then toString m.key else "<unknow location>"
+              if m ? key then toString m.key else "<unknown location>"
             ) modules
           )
         );