1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 21:51:50 +02:00

Get rid of footnotes

Markdown doesn't support them.
This commit is contained in:
Eelco Dolstra 2020-07-24 11:43:44 +02:00
parent a71d1cedff
commit 8d0b311a1c
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
18 changed files with 79 additions and 110 deletions

View file

@ -17,14 +17,14 @@ would be invalid if no such variable exists. That is, in a normal
recursive set, they are.
Recursive sets of course introduce the danger of infinite recursion. For
example,
example, the expression
rec {
x = y;
y = x;
}.x
does not terminate\[1\].
will crash with an `infinite recursion encountered` error message.
## Let-expressions
@ -304,6 +304,3 @@ establishes the same scope as
Comments can be single-line, started with a `#` character, or
inline/multi-line, enclosed within `/*
... */`.
1. Actually, Nix detects infinite recursion in this case and aborts
(“infinite recursion encountered”).