* More typos.

svn path=/nixpkgs/trunk/; revision=17257
This commit is contained in:
Eelco Dolstra 2009-09-18 15:18:23 +00:00
parent c6267a8c9d
commit 1885909e93
1 changed files with 3 additions and 3 deletions

View File

@ -54,10 +54,10 @@ rec {
removeAttrs (delayProperties m) ["require"];
in
if isModule m then
{ key = "<unknow location>"; } // m
{ key = "<unknown location>"; } // m
else
{
key = "<unknow location>";
key = "<unknown location>";
imports = getImportedPaths m;
config = getConfig m;
} // (
@ -73,7 +73,7 @@ rec {
moduleImport = m:
(unifyModuleSyntax (applyIfFunction (importIfPath m) args)) // {
# used by generic closure to avoid duplicated imports.
key = if isPath m then m else "<unknow location>";
key = if isPath m then m else "<unknown location>";
};
getImports = m: attrByPath ["imports"] [] m;