Skip to content

Commit 8ffc015

Browse files
committed
Adjust language and link text
1 parent 3bb3ea1 commit 8ffc015

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

articles/azure-functions/durable/durable-functions-orchestrations.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Durable Functions is an extension of [Azure Functions](../functions-overview.md)
2020
* They're designed to be durable and reliable. Run progress is automatically saved as a checkpoint when the function calls an `await` or `yield` operator. Local state isn't lost when the process recycles or the virtual machine reboots.
2121
* They can be long running. The total lifespan of an *orchestration instance* can be seconds, days, or months, or the instance can be configured to never end.
2222

23-
This article gives you an overview of orchestrator functions and how they can help you solve various app development challenges. For information about the types of functions available in a Durable Functions app, see [Durable Function types](durable-functions-types-features-overview.md).
23+
This article gives you an overview of orchestrator functions and how they can help you solve various app development challenges. For information about the types of functions available in a Durable Functions app, see [Durable Functions types and features](durable-functions-types-features-overview.md).
2424

2525
## Orchestration identity
2626

@@ -187,7 +187,7 @@ Whenever an activity function is scheduled, the Durable Task Framework saves the
187187

188188
Generally speaking, the Durable Task Framework does the following at each checkpoint:
189189

190-
* Saves run history into durable storage.
190+
* Saves the run history into durable storage.
191191
* Enqueues messages for functions the orchestrator wants to invoke.
192192
* Enqueues messages for the orchestrator itself, such as durable timer messages.
193193

@@ -222,8 +222,8 @@ The table columns contain the following values:
222222
* **PartitionKey**: The instance ID of the orchestration.
223223
* **EventType**: The type of the event. For detailed descriptions of all the history event types, see [Durable Task Framework History Events](https://github.com/Azure/durabletask/tree/main/src/DurableTask.Core/History#readme).
224224
* **Timestamp**: The Coordinated Universal Time timestamp of the history event.
225-
* **Name**: The name of the invoked function.
226225
* **Input**: The JSON-formatted input of the function.
226+
* **Name**: The name of the invoked function.
227227
* **Result**: The output of the function, specifically, its return value.
228228

229229
> [!WARNING]
@@ -292,7 +292,7 @@ The critical section feature is also useful for coordinating changes to durable
292292
293293
### Calls to HTTP endpoints (Durable Functions 2.x)
294294

295-
Orchestrator functions aren't permitted to do I/O operations, as described in [orchestrator function code constraints](durable-functions-code-constraints.md). The typical workaround for this limitation is to wrap any code that needs to do I/O operations in an activity function. Orchestrations that interact with external systems frequently use activity functions to make HTTP calls and return the results to the orchestration.
295+
Orchestrator functions aren't permitted to do I/O operations, as described in [Orchestrator function code constraints](durable-functions-code-constraints.md). The typical workaround for this limitation is to wrap any code that needs to do I/O operations in an activity function. Orchestrations that interact with external systems frequently use activity functions to make HTTP calls and return the results to the orchestration.
296296

297297
# [C# (InProc)](#tab/csharp-inproc)
298298

0 commit comments

Comments
 (0)