Mathijs Kwik b63ec64521 lib/recursiveUpdateUntil: fix code to match documentation
$ nix repl lib
Welcome to Nix version 2.0.2. Type :? for help.

Loading 'lib'...
Added 350 variables.

-- this is the exact example from the function's documentation:
nix-repl> recursiveUpdateUntil (path: l: r: path == ["foo"]) {
                   # first attribute set
                   foo.bar = 1;
                   foo.baz = 2;
                   bar = 3;
                 } {
                   #second attribute set
                   foo.bar = 1;
                   foo.quz = 2;
                   baz = 4;
                 }
{ bar = 3; baz = 4; foo = { bar = 1; baz = 2; quz = 2; }; }

-- although the documentation says:
{
    foo.bar = 1; # 'foo.*' from the second set
    foo.quz = 2; #
    bar = 3;     # 'bar' from the first set
    baz = 4;     # 'baz' from the second set
}
2018-08-15 17:16:56 +02:00
..
2018-07-20 18:48:37 +00:00
2018-07-15 09:36:08 +09:00
2017-09-16 21:36:43 -04:00
2017-09-16 21:36:43 -04:00
2018-07-20 18:48:37 +00:00
2018-07-28 00:01:31 +02:00
2018-07-20 18:48:37 +00:00
2017-08-22 13:28:55 +03:00
2018-07-20 18:48:37 +00:00
2018-03-04 06:28:34 -08:00