Fix collect example.

svn path=/nixpkgs/trunk/; revision=17510
This commit is contained in:
Nicolas Pierron 2009-09-29 15:34:19 +00:00
parent 176c0e32b1
commit 3872882e93

View file

@ -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/"; }; }