Merge branch 'worktree-api-urls' into macros

This commit is contained in:
2026-03-13 05:42:51 +00:00

View File

@@ -188,9 +188,9 @@
(~docs/table
:headers (list "Current" "General form" "Direction")
:rows (list
(list (code "collect! / collected") (code "emit! / emitted") "upward (child \u2192 scope)")
(list (code "make-spread") (str "emit! into implicit " "\"parent-attrs\" provider") "upward (child \u2192 parent)")
(list "(nothing yet)" (code "context") "downward (scope \u2192 child)")))
(list "collect! / collected" "emit! / emitted" "upward (child \u2192 scope)")
(list "make-spread" "emit! into implicit parent-attrs provider" "upward (child \u2192 parent)")
(list "(nothing yet)" "context" "downward (scope \u2192 child)")))
(p (code "provide") " creates a named scope with a value (downward) and an accumulator (upward). "
(code "context") " reads the value. " (code "emit!") " appends to the accumulator. "
(code "emitted") " retrieves accumulated values.")