Silly mistake fixed

svn path=/nixpkgs/trunk/; revision=12665
This commit is contained in:
Michael Raskin 2008-08-20 07:17:55 +00:00
parent 97e15cc2b8
commit a8da119da4

View File

@ -45,7 +45,7 @@ rec {
function = foldArgs merger f arg;
};
};
composedArgsAndFun = f: foldArgs (x: y: y) {} f;
composedArgsAndFun = f: foldArgs (x: y: y) f {};
# example a = pairMap (x : y : x + y) ["a" "b" "c" "d"];
# result: ["ab" "cd"]