From b7e69faf1d256ce5a661e2cbab6a72f075d87f21 Mon Sep 17 00:00:00 2001 From: Alexander Groleau Date: Tue, 31 Oct 2023 11:45:51 -0700 Subject: 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. --- lib/fixed-points.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/fixed-points.nix') diff --git a/lib/fixed-points.nix b/lib/fixed-points.nix index 3444e95e15ad8..3b5fdc9e8ea17 100644 --- a/lib/fixed-points.nix +++ b/lib/fixed-points.nix @@ -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: -- cgit 1.4.1