1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-17 01:23:48 +00:00

Merge pull request #5580 from DjebbZ/patch-2

Fix typo in recursive set example
This commit is contained in:
Domen Kožar 2015-01-04 21:10:58 +01:00
commit 6765d797ff

View file

@ -60,7 +60,7 @@ manual</link> for the rest.</para>
<entry>A nested set, equivalent to <literal>{ foo = { bar = 1; }; }</literal></entry>
</row>
<row>
<entry><literal>rec { x = "bla"; y = x + "bar"; }</literal></entry>
<entry><literal>rec { x = "foo"; y = x + "bar"; }</literal></entry>
<entry>A recursive set, equivalent to <literal>{ x = "foo"; y = "foobar"; }</literal></entry>
</row>
<row>