Skip to content

Commit 4bf6e70

Browse files
Fix markdown formatting.
Apply mdformat to extension-point docs so the Markdown Formatting CI check passes. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 77e3d03 commit 4bf6e70

2 files changed

Lines changed: 21 additions & 21 deletions

File tree

docs/how-to/extending-dsl.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -178,17 +178,17 @@ The Fusion Engine walks the inheritance tree and collects all extension points f
178178

179179
## Extension Point Summary
180180

181-
| Point | Purpose | Returns | Fusion Strategy |
182-
| -------------- | ------------------------------------ | ---------- | ------------------- |
183-
| `bind` | Register reaction at creation time | `void` | All called |
184-
| `get` | Retrieve data for callback arguments | Any type | Tuple concatenation |
185-
| `precondition` | Gate whether the task should run | `bool` | Logical AND |
186-
| `pre_run` | Hook before callback execution | `void` | All called |
187-
| `post_run` | Hook after callback execution | `void` | All called |
188-
| `scope` | RAII lock held during execution | RAII type | All held |
181+
| Point | Purpose | Returns | Fusion Strategy |
182+
| -------------- | ------------------------------------ | --------------- | ------------------- |
183+
| `bind` | Register reaction at creation time | `void` | All called |
184+
| `get` | Retrieve data for callback arguments | Any type | Tuple concatenation |
185+
| `precondition` | Gate whether the task should run | `bool` | Logical AND |
186+
| `pre_run` | Hook before callback execution | `void` | All called |
187+
| `post_run` | Hook after callback execution | `void` | All called |
188+
| `scope` | RAII lock held during execution | RAII type | All held |
189189
| `priority` | Task scheduling priority | `PriorityLevel` | Maximum wins |
190-
| `group` | Concurrency group membership | Set | Union |
191-
| `pool` | Which thread pool to run on | Descriptor | (single value) |
190+
| `group` | Concurrency group membership | Set | Union |
191+
| `pool` | Which thread pool to run on | Descriptor | (single value) |
192192

193193
See [Extension Points Reference](../reference/extensions/extension-points.md) and [Fusion Engine](../reference/extensions/fusion-engine.md) for full details.
194194

docs/reference/extensions/extension-points.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ Each extension point is documented in detail on its own page:
4848

4949
## Quick Reference
5050

51-
| Point | Signature | Returns | Fusion Strategy |
52-
| -------------- | ------------------------------ | ----------- | --------------------------------- |
53-
| `bind` | `bind<DSL>(reaction, args...)` | void | Arg-distributing (FunctionFusion) |
54-
| `get` | `get<DSL>(task)` | data | Tuple concatenation |
55-
| `precondition` | `precondition<DSL>(task)` | bool | AND (short-circuit) |
51+
| Point | Signature | Returns | Fusion Strategy |
52+
| -------------- | ------------------------------ | ------------- | --------------------------------- |
53+
| `bind` | `bind<DSL>(reaction, args...)` | void | Arg-distributing (FunctionFusion) |
54+
| `get` | `get<DSL>(task)` | data | Tuple concatenation |
55+
| `precondition` | `precondition<DSL>(task)` | bool | AND (short-circuit) |
5656
| `priority` | `priority<DSL>(task)` | PriorityLevel | Maximum |
57-
| `pool` | `pool<DSL>(task)` | descriptor | Exactly one |
58-
| `group` | `group<DSL>(task)` | set | Set union |
59-
| `run_inline` | `run_inline<DSL>(task)` | Inline enum | Must agree |
60-
| `scope` | `scope<DSL>(task)` | RAII lock | All held |
61-
| `pre_run` | `pre_run<DSL>(task)` | void | Sequential |
62-
| `post_run` | `post_run<DSL>(task)` | void | Sequential |
57+
| `pool` | `pool<DSL>(task)` | descriptor | Exactly one |
58+
| `group` | `group<DSL>(task)` | set | Set union |
59+
| `run_inline` | `run_inline<DSL>(task)` | Inline enum | Must agree |
60+
| `scope` | `scope<DSL>(task)` | RAII lock | All held |
61+
| `pre_run` | `pre_run<DSL>(task)` | void | Sequential |
62+
| `post_run` | `post_run<DSL>(task)` | void | Sequential |

0 commit comments

Comments
 (0)