Skip to content

Commit 46d7890

Browse files
committed
Acrolinx
1 parent 34d0e3a commit 46d7890

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

articles/azure-functions/how-to-create-function-azure-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Before you begin, you must have the following:
2727

2828
In Azure Functions, a function project is a container for one or more individual functions that each responds to a specific trigger. All functions in a project share the same local and hosting configurations. In this section, you create a function project that contains a single function.
2929
::: zone pivot="programming-language-csharp,programming-language-javascript,programming-language-typescript,programming-language-powershell,programming-language-python"
30-
1. In a terminal or command prompt, run the following command for your chosen language to create a function app project in the current folder:
30+
1. In a terminal or command prompt, run this [`func init`](./functions-core-tools-reference.md#func-init) command to create a function app project in the current folder:
3131
::: zone-end
3232
::: zone pivot="programming-language-csharp"
3333
```console
@@ -157,7 +157,7 @@ In Azure Functions, a function project is a container for one or more individual
157157
</pre>
158158

159159
>[!NOTE]
160-
> If HttpExample doesn't appear as shown above, you likely started the host from outside the root folder of the project. In that case, use **Ctrl**+**C** to stop the host, navigate to the project's root folder, and run the previous command again.
160+
> If the HttpExample endpoint doesn't appear as expected, you likely started the host from outside the root folder of the project. In that case, use **Ctrl**+**C** to stop the host, navigate to the project's root folder, and run the previous command again.
161161

162162
1. Copy the URL of your `HttpExample` function from this output to a browser and browse to the function URL and you should receive success response with a "hello world" message.
163163

@@ -179,7 +179,7 @@ To enable the Functions host to connect to the default storage account using sha
179179
180180
:::code language="azurecli" source="~/azure_cli_scripts/azure-functions/create-function-app-flex-plan-identities/create-function-app-flex-plan-identities.md" range="47-51" :::
181181
182-
At this point, the Functions host is able to connect to the storage account securely using managed identities. You can now deploy your project code to the Azure resources
182+
At this point, the Functions host is able to connect to the storage account securely using managed identities. You can now deploy your project code to the Azure resources.
183183
184184
[!INCLUDE [functions-publish-project-cli](../../includes/functions-publish-project-cli.md)]
185185

includes/functions-create-azure-resources-flex-cli.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Use the following commands to create these items. Both Azure CLI and PowerShell
2626
az login
2727
```
2828
29-
The [az login](/cli/azure/reference-index#az-login) command signs you into your Azure account.
29+
The [`az login`](/cli/azure/reference-index#az-login) command signs you into your Azure account.
3030
<!---
3131
### [Azure PowerShell](#tab/azure-powershell)
3232
```azurepowershell
@@ -80,7 +80,7 @@ Use the following commands to create these items. Both Azure CLI and PowerShell
8080
---
8181
-->
8282
83-
In this example, replace `<STORAGE_NAME>` with a name that is appropriate to you and unique in Azure Storage. Names must contain three to 24 characters numbers and lowercase letters only. `Standard_LRS` specifies a general-purpose account, which is [supported by Functions](../articles/azure-functions/storage-considerations.md#storage-account-requirements). This new account can only be accessed by using Micrososft Entra-authenticated identities that have been granted permissions to specific resources.
83+
In this example, replace `<STORAGE_NAME>` with a name that is appropriate to you and unique in Azure Storage. Names must contain three to 24 characters numbers and lowercase letters only. `Standard_LRS` specifies a general-purpose account, which is [supported by Functions](../articles/azure-functions/storage-considerations.md#storage-account-requirements). This new account can only be accessed by using Microsoft Entra-authenticated identities that have been granted permissions to specific resources.
8484
8585
1. Create a user-assigned managed identity, then capture and parse the returned JSON properties of the object using `jq`:
8686
@@ -144,7 +144,7 @@ Use the following commands to create these items. Both Azure CLI and PowerShell
144144
145145
---
146146
-->
147-
In this example, replace these placholders:
147+
In this example, replace these placeholders:
148148
149149
+ `<STORAGE_NAME>`: the name of the account you used in the previous step.
150150
+ `<REGION>`: your region.

includes/functions-requirements-azure-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
::: zone pivot="programming-language-java"
88
+ [Java 17 Developer Kit](/azure/developer/java/fundamentals/java-support-on-azure)
99
+ If you use another [supported version of Java](../articles/azure-functions/supported-languages.md?pivots=programming-language-java#languages-by-runtime-version), you must update the project's pom.xml file.
10-
+ The `JAVA_HOME` environment variable must be set to the install location of the correct version of the JDK.
10+
+ The `JAVA_HOME` environment variable must be set to the install location of the correct version of the Java Development Kit (JDK).
1111
+ [Apache Maven 3.8.x](https://maven.apache.org)
1212
::: zone-end
1313
::: zone pivot="programming-language-javascript,programming-language-typescript"

0 commit comments

Comments
 (0)