Skip to content

Commit d7eebf8

Browse files
author
Jill Grant
authored
Update durable-functions-isolated-create-first-csharp.md
Acrolinx and renumbering fixes
1 parent c97fbb5 commit d7eebf8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/azure-functions/durable/durable-functions-isolated-create-first-csharp.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ In this section, you use Visual Studio Code to create a local Azure Functions pr
6262
| Select a version | Azure Functions v4 | You only see this option when the Core Tools aren't already installed. In this case, Core Tools are installed the first time you run the app. |
6363
| Select a .NET runtime | .NET 8.0 isolated | Creates a function project that supports .NET 8 running in isolated worker process and the Azure Functions Runtime 4.0. For more information, see [How to target Azure Functions runtime version](../functions-versions.md). |
6464
| Select a template for your project's first function | Durable Functions Orchestration | Create a Durable Functions orchestration |
65-
| Chooose a durable storage type | Azure Storage | The default storage provider for Durable Functions. See [Durable Functions storage providers](./durable-functions-storage-providers.md) for more details. |
65+
| Choose a durable storage type | Azure Storage | The default storage provider for Durable Functions. See [Durable Functions storage providers](./durable-functions-storage-providers.md) for more details. |
6666
| Provide a function name | HelloOrchestration | Name of the orchestration function |
6767
| Provide a namespace | Company.Function | Namespace for the generated class |
6868
| Select how you would like to open your project | Open in current window | Reopens Visual Studio Code in the folder you selected. |
@@ -103,11 +103,11 @@ Azure Functions Core Tools lets you run an Azure Functions project locally. You'
103103

104104
1. To test your function, set a breakpoint in the `SayHello` activity function code and press <kbd>F5</kbd> to start the function app project. Output from Core Tools is displayed in the **Terminal** panel.
105105

106-
> [!NOTE]
107-
> For more information on debugging, see [Durable Functions Diagnostics](durable-functions-diagnostics.md#debugging).
106+
> [!NOTE]
107+
> For more information on debugging, see [Durable Functions Diagnostics](durable-functions-diagnostics.md#debugging).
108108
109-
> [!NOTE]
110-
> If you encounter a "No job functions found" error, please [update your Azure Functions Core Tools installation to the latest version](./../functions-core-tools-reference.md). Older versions of core tools do not support .NET isolated.
109+
> [!NOTE]
110+
> If you encounter a "No job functions found" error, please [update your Azure Functions Core Tools installation to the latest version](./../functions-core-tools-reference.md). Older versions of core tools do not support .NET isolated.
111111
112112
1. In the **Terminal** panel, copy the URL endpoint of your HTTP-triggered function.
113113

@@ -136,8 +136,8 @@ Azure Functions Core Tools lets you run an Azure Functions project locally. You'
136136
}
137137
```
138138

139-
> [!NOTE]
140-
> You can observe the [replay behavior](./durable-functions-orchestrations.md#reliability) of Durable Functions through breakpoints. Because this is an important concept to understand, it's highly recommended that you read the linked article.
139+
> [!NOTE]
140+
> You can observe the [replay behavior](./durable-functions-orchestrations.md#reliability) of Durable Functions through breakpoints. Because this is an important concept to understand, it's highly recommended that you read the linked article.
141141

142142
1. To stop debugging, press <kbd>Shift + F5</kbd> in Visual Studio Code.
143143

@@ -209,7 +209,7 @@ The Azure Functions template creates a project that can be published to a functi
209209
> [!NOTE]
210210
> There are other storage options you can use for your Durable Functions app. See [Durable Functions storage providers](durable-functions-storage-providers.md) to learn more about different storage options and what benefits they provide.
211211

212-
In your function app, you'll see a file called *Function1.cs* containing three functions, wihch are the basic building blocks of a Durable Functions:
212+
In your function app, you'll see a file called *Function1.cs* containing three functions, which are the basic building blocks of a Durable Functions:
213213

214214
| Method | Description |
215215
| ----- | ----------- |

0 commit comments

Comments
 (0)