about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorDS <commits@sidhion.com>2024-02-29 06:22:00 -0800
committerDS <commits@sidhion.com>2024-02-29 06:22:00 -0800
commitbaae71c82109f67632911287bbc36252fe43eab1 (patch)
treebee33e7e942fb19e75a3acb89f7ae5fe9263655f /lib
parent656fc4fb01816a45603d74bf1ff0037321373d5b (diff)
downloadnixlib-baae71c82109f67632911287bbc36252fe43eab1.tar
nixlib-baae71c82109f67632911287bbc36252fe43eab1.tar.gz
nixlib-baae71c82109f67632911287bbc36252fe43eab1.tar.bz2
nixlib-baae71c82109f67632911287bbc36252fe43eab1.tar.lz
nixlib-baae71c82109f67632911287bbc36252fe43eab1.tar.xz
nixlib-baae71c82109f67632911287bbc36252fe43eab1.tar.zst
nixlib-baae71c82109f67632911287bbc36252fe43eab1.zip
lib.fixedPoints: fix rendering of docs for `extends`
Diffstat (limited to 'lib')
-rw-r--r--lib/fixed-points.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/lib/fixed-points.nix b/lib/fixed-points.nix
index 3370b55a4ab9..3bd18fdd2a5a 100644
--- a/lib/fixed-points.nix
+++ b/lib/fixed-points.nix
@@ -145,6 +145,12 @@ rec {
     in fix g
     ```
 
+    :::{.note}
+    The argument to the given fixed-point function after applying an overlay will *not* refer to its own return value, but rather to the value after evaluating the overlay function.
+
+    The given fixed-point function is called with a separate argument than if it was evaluated with `lib.fix`.
+    :::
+
     :::{.example}
 
     # Extend a fixed-point function with an overlay
@@ -230,13 +236,6 @@ rec {
 
       fix (extends (final: prev: { c = final.a + final.b; }) f)
       => { a = 1; b = 3; c = 4; }
-
-    :::{.note}
-    The argument to the given fixed-point function after applying an overlay will *not* refer to its own return value, but rather to the value after evaluating the overlay function.
-
-    The given fixed-point function is called with a separate argument than if it was evaluated with `lib.fix`.
-    The new argument
-    :::
   */
   extends =
     # The overlay to apply to the fixed-point function