Skip to content

Commit 50b5ca0

Browse files
Update storage-how-to-create-file-share.md
fix typo
1 parent 9819fcc commit 50b5ca0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/storage/files/storage-how-to-create-file-share.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ $storageAccountSku = "StandardV2_LRS"
178178
New-AzStorageAccount -ResourceGroupName $resourceGroupName -AccountName $storageAccountName -SkuName $storageAccountSku -Kind $storageAccountKind -Location $region
179179
```
180180

181-
To view the settings and service usage for the Provisiond V2 storage account, use the following command.
181+
To view the settings and service usage for the Provisioned V2 storage account, use the following command.
182182

183183
```powershell
184184
Get-AzStorageFileServiceUsage -ResourceGroupName $resourceGroupName -StorageAccountName $storageAccountName
@@ -233,7 +233,7 @@ storageAccountSku="StandardV2_LRS"
233233
az storage account create --resource-group $resourceGroupName --name $storageAccountName --location $region --kind $storageAccountKind --sku $storageAccountSku --output none
234234
```
235235

236-
To view the settings and service usage for the Provisiond V2 storage account, use the following command.
236+
To view the settings and service usage for the Provisioned V2 storage account, use the following command.
237237

238238
```bash
239239
az storage account file-service-usage --account-name $storageAccountName -g $resourceGroupName
@@ -331,7 +331,7 @@ $f | fl
331331
```
332332

333333
# [Azure CLI](#tab/azure-cli)
334-
You can create an Provisioned v2 Azure file share with [`az storage share-rm create`](/cli/azure/storage/share-rm#az-storage-share-rm-create) command. The following PowerShell commands assume you set the variables `resourceGroupName` and `storageAccountName` as defined in the creating a storage account with Azure CLI section.
334+
You can create a Provisioned v2 Azure file share with [`az storage share-rm create`](/cli/azure/storage/share-rm#az-storage-share-rm-create) command. The following PowerShell commands assume you set the variables `resourceGroupName` and `storageAccountName` as defined in the creating a storage account with Azure CLI section.
335335

336336
To create a provisioned v2 file share, use the following command. Remember to replace the values for the variables `shareName`, `provisionedStorageGib` with the desired selections for your file share deployment.
337337

0 commit comments

Comments
 (0)