Skip to content

Commit 394ef72

Browse files
committed
Cosmetic fixes
1 parent 6118924 commit 394ef72

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Users of [Extension Bundles](../extension-bundles.md) (the recommended Azure Fun
5555
* PowerShell: The [AzureFunctions.PowerShell.Durable.SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) module.
5656

5757
> [!NOTE]
58-
> For PowerShell users: the standalone [AzureFunctions.PowerShell.Durable.SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) module is now generally available (GA) and is the recommended approach. See the [migration guide](./durable-functions-powershell-v2-sdk-migration-guide.md) for details. The legacy SDK is also built into the Azure Functions PowerShell language worker for backward compatibility. However, the legacy SDK it may not receive new features or bug fixes, and it may be eventually removed from the worker.
58+
> For PowerShell users: the standalone [AzureFunctions.PowerShell.Durable.SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) module is now generally available (GA) and is the recommended approach. See the [migration guide](./durable-functions-powershell-v2-sdk-migration-guide.md) for details. The legacy SDK is also built into the Azure Functions PowerShell language worker for backward compatibility. However, the legacy SDK may not receive new features or bug fixes, and it may be eventually removed from the worker.
5959
6060
## GitHub repositories
6161

articles/azure-functions/durable/durable-functions-powershell-v2-sdk-migration-guide.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ ms.reviewer: azfuncdf
1010
# Guide to the standalone Durable Functions PowerShell SDK
1111

1212
The Durable Functions (DF) PowerShell SDK is now available as a standalone module in the PowerShell Gallery: [`AzureFunctions.PowerShell.Durable.SDK`](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK).
13-
This SDK is now generally available (GA) and is the recommended approach for authoring Durable Functions apps with PowerShell. In this article, we explain the benefits of this change, and what changes you can expect when adopting this new package.
14-
15-
> [!NOTE]
16-
> This package is now **generally available (GA)**.
13+
This SDK is now **generally available (GA)** and is the recommended approach for authoring Durable Functions apps with PowerShell. In this article, we explain the benefits of this change, and what changes you can expect when adopting this new package.
1714

1815
## Motivation behind the standalone SDK
1916

@@ -190,8 +187,8 @@ In this section, we describe the interface and behavioral changes you can expect
190187

191188
#### Modified cmdlets
192189

193-
* The cmdlet `Get-DurableTaskResult` now only accepts a single Task as it's argument, instead of accepting a list of Tasks.
194-
* The `New-DurableRetryOptions` cmdlet is renamed to `New-DurableRetryPolicy` (an alias for the old cmdlet is provided for backward compatibility).
190+
* The `Get-DurableTaskResult` cmdlet now only accepts a single Task as it's argument, instead of accepting a list of Tasks.
191+
* The `New-DurableRetryOptions` cmdlet is renamed to `New-DurableRetryPolicy` (an alias for the old name is provided for backward compatibility).
195192

196193
#### Behavioral changes
197194

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ An orchestrator function can call another orchestrator function using the *"call
1616
Sub-orchestrator functions behave just like activity functions from the caller's perspective. They can return a value and throw an exception as the parent orchestrator function anticipates them.
1717

1818
> [!NOTE]
19-
> In PowerShell, sub-orchestrations are currently supported in the [standalone Durable Functions PowerShell SDK](durable-functions-powershell-v2-sdk-migration-guide.md) only.
19+
> In PowerShell, sub-orchestrations are supported in the [standalone Durable Functions PowerShell SDK](durable-functions-powershell-v2-sdk-migration-guide.md) only.
2020
2121
[!INCLUDE [functions-nodejs-durable-model-description](../../../includes/functions-nodejs-durable-model-description.md)]
2222

articles/azure-functions/durable/quickstart-powershell-vscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ Next, specify an entry for the DF SDK in your `requirements.psd1` file, as in th
8686

8787
Make sure you use the latest version of the [AzureFunctions.PowerShell.Durable.SDK](https://www.powershellgallery.com/packages/AzureFunctions.PowerShell.Durable.SDK) module. The `2.*` version specifier ensures you get the latest stable 2.x version.
8888

89-
Append the following line to the end of your `profile.ps1` file:
89+
Add the following line to your `profile.ps1` file (typically, at the end of the file):
9090

9191
```PowerShell
9292
Import-Module AzureFunctions.PowerShell.Durable.SDK -ErrorAction Stop

0 commit comments

Comments
 (0)