diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-11T13·36+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-08-11T13·36+0000 |
commit | 5664b6d7ba28453ccdd6d1c07a707f98608500ff (patch) | |
tree | 60daaa7ce7b53cbfe2ec2a86aeb4eca792ccf7ca /tests/lang/eval-okay-xml.nix | |
parent | b455c4c45cba49397952e662cace85aedb6848fe (diff) |
* Removed the "valid values" feature. Nobody uses it anyway.
Diffstat (limited to 'tests/lang/eval-okay-xml.nix')
-rw-r--r-- | tests/lang/eval-okay-xml.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lang/eval-okay-xml.nix b/tests/lang/eval-okay-xml.nix index 244b2c0fb401..8151337b98e0 100644 --- a/tests/lang/eval-okay-xml.nix +++ b/tests/lang/eval-okay-xml.nix @@ -8,6 +8,6 @@ rec { c = "foo" + "bar"; - f = {z, x : ["a" "b" ("c" + "d")], y : [true false]}: if y then x else z; + f = {z, x, y}: if y then x else z; } \ No newline at end of file |