Skip to content

Commit caac9b7

Browse files
committed
Acrolinx
1 parent fa9630b commit caac9b7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/azure-functions/create-first-function-cli-csharp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This article supports creating both types of compiled C# functions:
1919

2020
[!INCLUDE [functions-dotnet-execution-model](../../includes/functions-dotnet-execution-model.md)]
2121

22-
This article creates an HTTP triggered function that runs on .NET in-process or isolated worker process with an example of .NET 6. There is also a [Visual Studio Code-based version](create-first-function-vs-code-csharp.md) of this article.
22+
This article creates an HTTP triggered function that runs on .NET in-process or isolated worker process with an example of .NET 6. There's also a [Visual Studio Code-based version](create-first-function-vs-code-csharp.md) of this article.
2323

2424
Completing this quickstart incurs a small cost of a few USD cents or less in your Azure account.
2525

@@ -41,7 +41,7 @@ You also need an Azure account with an active subscription. [Create an account f
4141

4242
### Prerequisite check
4343

44-
Verify your prerequisites, which depend on whether you are using Azure CLI or Azure PowerShell for creating Azure resources:
44+
Verify your prerequisites, which depend on whether you're using Azure CLI or Azure PowerShell for creating Azure resources:
4545

4646
# [Azure CLI](#tab/azure-cli)
4747

@@ -99,7 +99,7 @@ In Azure Functions, a function project is a container for one or more individual
9999
func new --name HttpExample --template "HTTP trigger" --authlevel "anonymous"
100100
```
101101

102-
`func new` creates a HttpExample.cs code file.
102+
`func new` creates an HttpExample.cs code file.
103103

104104
### (Optional) Examine the file contents
105105

@@ -211,7 +211,7 @@ To learn more, see [Azure Functions HTTP triggers and bindings](./functions-bind
211211

212212
In the previous example, replace `<STORAGE_NAME>` with the name of the account you used in the previous step, and replace `<APP_NAME>` with a globally unique name appropriate to you. The `<APP_NAME>` is also the default DNS domain for the function app.
213213

214-
This command creates a function app running in your specified language runtime under the [Azure Functions Consumption Plan](consumption-plan.md), which is free for the amount of usage you incur here. The command also provisions an associated Azure Application Insights instance in the same resource group, with which you can monitor your function app and view logs. For more information, see [Monitor Azure Functions](functions-monitoring.md). The instance incurs no costs until you activate it.
214+
This command creates a function app running in your specified language runtime under the [Azure Functions Consumption Plan](consumption-plan.md), which is free for the amount of usage you incur here. The command also creates an associated Azure Application Insights instance in the same resource group, with which you can monitor your function app and view logs. For more information, see [Monitor Azure Functions](functions-monitoring.md). The instance incurs no costs until you activate it.
215215

216216
[!INCLUDE [functions-publish-project-cli](../../includes/functions-publish-project-cli.md)]
217217

articles/azure-functions/functions-create-your-first-function-visual-studio.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Completing this quickstart incurs a small cost of a few USD cents or less in you
3131

3232
+ [Visual Studio 2022](https://visualstudio.microsoft.com/vs/). Make sure to select the **Azure development** workload during installation.
3333

34-
+ [Azure subscription](../guides/developer/azure-developer-guide.md#understanding-accounts-subscriptions-and-billing). If you don't already have an account [create a free one](https://azure.microsoft.com/free/dotnet/) before you begin.
34+
+ [Azure subscription](../guides/developer/azure-developer-guide.md#understanding-accounts-subscriptions-and-billing). If you don't already have an account, [create a free one](https://azure.microsoft.com/free/dotnet/) before you begin.
3535

3636
## Create a function app project
3737

@@ -109,7 +109,7 @@ After you've verified that the function runs correctly on your local computer, i
109109

110110
## Publish the project to Azure
111111

112-
Visual Studio can publish your local project to Azure. Before you can publish your project, you must have a function app in your Azure subscription. If you don't already have a function app in Azure, Visual Studio publishing creates one for you the first time you publish your project. In this article you create a function app and related Azure resources.
112+
Visual Studio can publish your local project to Azure. Before you can publish your project, you must have a function app in your Azure subscription. If you don't already have a function app in Azure, Visual Studio publishing creates one for you the first time you publish your project. In this article, you create a function app and related Azure resources.
113113

114114
[!INCLUDE [Publish the project to Azure](../../includes/functions-vstools-publish.md)]
115115

@@ -135,7 +135,7 @@ Visual Studio can publish your local project to Azure. Before you can publish yo
135135

136136
*Resources* in Azure refer to function apps, functions, storage accounts, and so forth. They're grouped into *resource groups*, and you can delete everything in a group by deleting the group.
137137

138-
You created Azure resources to complete this quickstart. You may be billed for these resources, depending on your [account status](https://azure.microsoft.com/account/) and [service pricing](https://azure.microsoft.com/pricing/). Other quickstarts in this collection build upon this quickstart. If you plan to work with subsequent quickstarts, tutorials, or with any of the services you have created in this quickstart, don't clean up the resources.
138+
You created Azure resources to complete this quickstart. You may be billed for these resources, depending on your [account status](https://azure.microsoft.com/account/) and [service pricing](https://azure.microsoft.com/pricing/). Other quickstarts in this collection build upon this quickstart. If you plan to work with subsequent quickstarts, tutorials, or with any of the services you've created in this quickstart, don't clean up the resources.
139139

140140
[!INCLUDE [functions-vstools-cleanup](../../includes/functions-vstools-cleanup.md)]
141141

@@ -153,7 +153,7 @@ Advance to the next article to learn how to add an Azure Storage queue binding t
153153
154154
# [Isolated process](#tab/isolated-process)
155155

156-
To learn more about working with C# functions that run in an isolated worker process, see the [Guide for running C# Azure Functions in an isolated worker process](dotnet-isolated-process-guide.md). Check out [.NET supported versions](functions-dotnet-class-library.md#supported-versions) to see other versions of supported .NET versions in an isolated worker process .
156+
To learn more about working with C# functions that run in an isolated worker process, see the [Guide for running C# Azure Functions in an isolated worker process](dotnet-isolated-process-guide.md). Check out [.NET supported versions](functions-dotnet-class-library.md#supported-versions) to see other versions of supported .NET versions in an isolated worker process.
157157

158158
Advance to the next article to learn how to add an Azure Storage queue binding to your function:
159159
> [!div class="nextstepaction"]

0 commit comments

Comments
 (0)