Fix collect example.

svn path=/nixpkgs/trunk/; revision=17510
gstqt5
Nicolas Pierron 2009-09-29 15:34:19 +00:00
parent 176c0e32b1
commit 3872882e93
1 changed files with 1 additions and 1 deletions

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