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:
Alexander Groleau 2023-10-31 11:45:51 -07:00 committed by GitHub
parent b4c5c6db4d
commit b7e69faf1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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-repl> fix = f: