mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00
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:
parent
b4c5c6db4d
commit
b7e69faf1d
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue