Skip to content

Commit 065b977

Browse files
committed
Phrasing
1 parent d55098d commit 065b977

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/supported-patterns.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def sequence(ctx: task.OrchestrationContext, _):
2020
return [result1, result2, result3]
2121
```
2222

23-
Link to the full [function chaining example](../examples/activity_sequence.py).
23+
See the full [function chaining example](../examples/activity_sequence.py).
2424

2525
### Fan-out/fan-in
2626

@@ -48,7 +48,7 @@ def orchestrator(ctx: task.OrchestrationContext, _):
4848
return {'work_items': work_items, 'results': results, 'total': sum(results)}
4949
```
5050

51-
Link to the full [fan-out sample](../examples/fanout_fanin.py).
51+
See the full [fan-out sample](../examples/fanout_fanin.py).
5252

5353
### Human interaction and durable timers
5454

@@ -79,7 +79,7 @@ def purchase_order_workflow(ctx: task.OrchestrationContext, order: Order):
7979

8080
As an aside, you'll also notice that the example orchestration above works with custom business objects. Support for custom business objects includes support for custom classes, custom data classes, and named tuples. Serialization and deserialization of these objects is handled automatically by the SDK.
8181

82-
Link to the full [human interaction sample](../examples/human_interaction.py).
82+
See the full [human interaction sample](../examples/human_interaction.py).
8383

8484
### Version-aware orchestrator
8585

@@ -118,4 +118,4 @@ def my_orchestrator(ctx: task.OrchestrationContext, order: Order):
118118
return "Success"
119119
```
120120

121-
Link to the full [version-aware orchestrator sample](../examples/version_aware_orchestrator.py)
121+
See the full [version-aware orchestrator sample](../examples/version_aware_orchestrator.py)

0 commit comments

Comments
 (0)