diff --git a/pkgs/lib/attrsets.nix b/pkgs/lib/attrsets.nix index ec2322c12f2..63abf789944 100644 --- a/pkgs/lib/attrsets.nix +++ b/pkgs/lib/attrsets.nix @@ -85,7 +85,7 @@ rec { Example: collect builtins.isList { a = { b = ["b"]; }; c = [1]; } - => ["b" 1] + => [["b"] [1]] collect (x: x ? outPath) { a = { outPath = "a/"; }; b = { outPath = "b/"; }; }