diff --git a/lib/attrsets.nix b/lib/attrsets.nix index 41e09decb7af..d4c446cebcb5 100644 --- a/lib/attrsets.nix +++ b/lib/attrsets.nix @@ -1158,7 +1158,7 @@ rec { mapAttrsRecursive :: ([String] -> a -> b) -> AttrSet -> AttrSet ``` */ - mapAttrsRecursive = f: set: mapAttrsRecursiveCond (as: true) f set; + mapAttrsRecursive = mapAttrsRecursiveCond (as: true); /** Like `mapAttrsRecursive`, but it takes an additional predicate that tells it whether to recurse into an attribute set.