fix of cosmetic commit (sry)

svn path=/nixpkgs/trunk/; revision=12646
This commit is contained in:
Marc Weber 2008-08-17 07:40:35 +00:00
parent bab435592b
commit 6394358c9a

View file

@ -491,7 +491,7 @@ rec {
# maps a function on each attr value
# f = attr : value : ..
mapAttrs = f : r : listToAttrs ( mapRecordFlatten (a : v : nv n ( f a v ) ) r);
mapAttrs = f : r : listToAttrs ( mapRecordFlatten (a : v : nv a ( f a v ) ) r);
# to be used with listToAttrs (_a_ttribute _v_alue)
nv = name : value : { inherit name value; };