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.
Alexander Groleau 2 years ago b7e69faf b4c5c6db
··· 45 45 } 46 46 ``` 47 47 48 48 - This is where `fix` comes in, it contains the syntactic that's not in `f` anymore. 48 48 + This is where `fix` comes in, it contains the syntactic recursion that's not in `f` anymore. 49 49 50 50 ```nix 51 51 nix-repl> fix = f: