about summary refs log tree commit diff
path: root/lib/fixed-points.nix
diff options
context:
space:
mode:
authorAlexander Groleau <source@proof.construction>2023-10-31 11:45:51 -0700
committerGitHub <noreply@github.com>2023-10-31 11:45:51 -0700
commitb7e69faf1d256ce5a661e2cbab6a72f075d87f21 (patch)
tree60e6f1f924de158f3854426ce0dd97e0068d590c /lib/fixed-points.nix
parentb4c5c6db4d5230dda022d21dc1e407a33c2373f6 (diff)
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.
Diffstat (limited to 'lib/fixed-points.nix')
-rw-r--r--lib/fixed-points.nix2
1 files changed, 1 insertions, 1 deletions
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: