lib/fixed-points.nix: correct typo
Corrects a minor typo in the description of `fix`; namely that `fix` allows factoring out syntactic recursion from another function.
This commit is contained in:
committed by
GitHub
parent
b4c5c6db4d
commit
b7e69faf1d
@@ -45,7 +45,7 @@ rec {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
This is where `fix` comes in, it contains the syntactic that's not in `f` anymore.
|
This is where `fix` comes in, it contains the syntactic recursion that's not in `f` anymore.
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
nix-repl> fix = f:
|
nix-repl> fix = f:
|
||||||
|
|||||||
Reference in New Issue
Block a user