Skip to content

Commit d6f463c

Browse files
Fix Az.Functions Syntax Errors (#17616)
1 parent 87675df commit d6f463c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Functions/help/New-AzFunctionApp.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Creates a function app.
5151
New-AzFunctionApp -Name MyUniqueFunctionAppName `
5252
-ResourceGroupName MyResourceGroupName `
5353
-Location centralUS `
54-
-StorageAccount MyStorageAccountName `
54+
-StorageAccountName MyStorageAccountName `
5555
-Runtime PowerShell
5656
```
5757

@@ -62,7 +62,7 @@ This command creates a consumption PowerShell function app in Central US.
6262
New-AzFunctionApp -Name MyUniqueFunctionAppName `
6363
-ResourceGroupName MyResourceGroupName `
6464
-PlanName MyPlanName `
65-
-StorageAccount MyStorageAccountName `
65+
-StorageAccountName MyStorageAccountName `
6666
-Runtime PowerShell
6767
```
6868

@@ -73,7 +73,7 @@ This command creates a PowerShell function app which will be hosted in a service
7373
New-AzFunctionApp -Name MyUniqueFunctionAppName `
7474
-ResourceGroupName MyResourceGroupName `
7575
-PlanName MyPlanName `
76-
-StorageAccount MyStorageAccountName `
76+
-StorageAccountName MyStorageAccountName `
7777
-DockerImageName myacr.azurecr.io/myimage:tag
7878
```
7979

0 commit comments

Comments
 (0)