Skip to content

Commit 8e70a9f

Browse files
authored
fix spelling (#3640)
1 parent 32edc76 commit 8e70a9f

10 files changed

+22
-22
lines changed

azps-12.5.0/Az.Websites/Add-AzWebAppAccessRestrictionRule.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ original_content_git_url: https://github.com/Azure/azure-powershell/blob/main/sr
99
# Add-AzWebAppAccessRestrictionRule
1010

1111
## SYNOPSIS
12-
Adds an Access Restiction rule to an Azure Web App.
12+
Adds an Access Restriction rule to an Azure Web App.
1313

1414
## SYNTAX
1515

azps-12.5.0/Az.Websites/Add-AzWebAppTrafficRouting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ The **Add-AzWebAppTrafficRouting** cmdlet adds a Routing rule to an Azure Web Ap
2424

2525
## EXAMPLES
2626

27-
### Example 1: Add a routing rule to transfer 15% of production traffice to Stg slot
27+
### Example 1: Add a routing rule to transfer 15% of production traffic to Stg slot
2828
```powershell
2929
Add-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" -RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=15;Name='Stg'}
3030
```
3131

32-
This command adds a routing rule to transfer 15% of production traffice to Stg slot
32+
This command adds a routing rule to transfer 15% of production traffic to Stg slot
3333

34-
### Example 2: Add a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner.
34+
### Example 2: Add a routing rule to transfer the production traffic to Stg slot ranges from 50% to 90% in incremental manner.
3535
```powershell
3636
Add-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" -RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=50;ChangeIntervalInMinutes=1;MinReroutePercentage=50;MaxReroutePercentage=90;Name='Stg';ChangeStep=10}
3737
```
3838

39-
This command adds a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner.
39+
This command adds a routing rule to transfer the production traffic to Stg slot ranges from 50% to 90% in incremental manner.
4040

4141
## PARAMETERS
4242

azps-12.5.0/Az.Websites/Az.Websites.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ARM (Azure Resource Manager) Web App and App Service Plan commands.
1414

1515
## Az.Websites Cmdlets
1616
### [Add-AzWebAppAccessRestrictionRule](Add-AzWebAppAccessRestrictionRule.md)
17-
Adds an Access Restiction rule to an Azure Web App.
17+
Adds an Access Restriction rule to an Azure Web App.
1818

1919
### [Add-AzWebAppTrafficRouting](Add-AzWebAppTrafficRouting.md)
2020
Add a routing Rule to the Slot.
@@ -335,7 +335,7 @@ Description for Creates a new static site in an existing resource group, or upda
335335
Description for Updates a user entry with the listed roles
336336

337337
### [Update-AzWebAppAccessRestrictionConfig](Update-AzWebAppAccessRestrictionConfig.md)
338-
Updates the inheritance of Main site Access Restiction config to SCM Site for an Azure Web App.
338+
Updates the inheritance of Main site Access Restriction config to SCM Site for an Azure Web App.
339339

340340
### [Update-AzWebAppTrafficRouting](Update-AzWebAppTrafficRouting.md)
341341
Update a routing Rule to the Slot.

azps-12.5.0/Az.Websites/Get-AzStaticWebApp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Kind Location Name Type
7171

7272
This commands list all static web applications under a resource group.
7373

74-
### Example 3: Get a satic web application by name
74+
### Example 3: Get a static web application by name
7575
```powershell
7676
Get-AzStaticWebApp -ResourceGroupName azure-rg-test -Name staticweb-portal04
7777
```
@@ -82,9 +82,9 @@ Kind Location Name Type
8282
Central US staticweb-portal04 Microsoft.Web/staticSites
8383
```
8484

85-
This commands gets a satic web application by name.
85+
This commands gets a static web application by name.
8686

87-
### Example 4: Get a satic web application by pipline
87+
### Example 4: Get a static web application by pipeline
8888
```powershell
8989
New-AzStaticWebApp -ResourceGroupName azure-rg-test -Name staticweb-pwsh01 -Location eastus2 -RepositoryUrl 'https://github.com/username/RepoName' -RepositoryToken 'repoToken123' -Branch 'master' -AppLocation 'Client' -ApiLocation 'Api' -OutputLocation 'wwwroot' -SkuName 'free' | Get-AzStaticWebApp
9090
```
@@ -95,7 +95,7 @@ Kind Location Name Type
9595
Central US staticweb-portal04 Microsoft.Web/staticSites
9696
```
9797

98-
This commands gets a satic web application by pipline.
98+
This commands gets a static web application by pipeline.
9999

100100
## PARAMETERS
101101

azps-12.5.0/Az.Websites/Get-AzStaticWebAppBuild.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Kind Name Type
5050
```
5151

5252
This command list all builds under a static web app.
53-
Automaticall create a new build in static web app When creating a new pull request for branch.
53+
Automatically create a new build in static web app When creating a new pull request for branch.
5454

5555
### Example 2: Get the details of a static site build
5656
```powershell

azps-12.5.0/Az.Websites/New-AzStaticWebAppBuildAppSetting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This command creates or updates the app settings of a static site build.
4747

4848
### Example 2: Create or updates the app settings of a static site build by pipeline
4949
```powershell
50-
Get-AzStaticWebAppBuildAppSetting -ResourceGroupName resourceGroup -Name taticweb00 -EnvironmentName 'default' | New-AzStaticWebAppBuildAppSetting -AppSetting @{'buildsetting1' = 'someval'; 'buildsetting2' = 'someval2' }
50+
Get-AzStaticWebAppBuildAppSetting -ResourceGroupName resourceGroup -Name staticweb00 -EnvironmentName 'default' | New-AzStaticWebAppBuildAppSetting -AppSetting @{'buildsetting1' = 'someval'; 'buildsetting2' = 'someval2' }
5151
```
5252

5353
```output

azps-12.5.0/Az.Websites/Test-AzStaticWebAppCustomDomain.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ Description for Validates a particular custom domain can be added to a static si
3838
Test-AzStaticWebAppCustomDomain -ResourceGroupName resourceGroup -Name staticweb00 -DomainName 'www01.azpstest.net'
3939
```
4040

41-
This commnad validates a particular custom domain can be added to a static site
41+
This command validates a particular custom domain can be added to a static site
4242

4343
### Example 2: Validate a particular custom domain can be added to a static site by pipeline
4444
```powershell
4545
Get-AzStaticWebAppCustomDomain -ResourceGroupName resourceGroup -Name staticweb00 -DomainName 'www01.azpstest.net' | Get-AzStaticWebAppCustomDomain
4646
```
4747

48-
This commnad validates a particular custom domain can be added to a static site by pipeline.
48+
This command validates a particular custom domain can be added to a static site by pipeline.
4949

5050
## PARAMETERS
5151

azps-12.5.0/Az.Websites/Update-AzWebAppAccessRestrictionConfig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ original_content_git_url: https://github.com/Azure/azure-powershell/blob/main/sr
99
# Update-AzWebAppAccessRestrictionConfig
1010

1111
## SYNOPSIS
12-
Updates the inheritance of Main site Access Restiction config to SCM Site for an Azure Web App.
12+
Updates the inheritance of Main site Access Restriction config to SCM Site for an Azure Web App.
1313

1414
## SYNTAX
1515

azps-12.5.0/Az.Websites/Update-AzWebAppTrafficRouting.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ The **Update-AzWebAppTrafficRouting** cmdlet updates the routing rule configurat
2424

2525
## EXAMPLES
2626

27-
### Example 1: Update a routing rule to transfer 15% of production traffice to Stg slot
27+
### Example 1: Update a routing rule to transfer 15% of production traffic to Stg slot
2828
```powershell
2929
Update-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" `
3030
-RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=15;Name='Stg'}
3131
```
3232

3333
This command updates a routing rule to transfer 15% of production traffic to Stg slot.
3434

35-
### Example 2: Update a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner.
35+
### Example 2: Update a routing rule to transfer the production traffic to Stg slot ranges from 50% to 90% in incremental manner.
3636
```powershell
3737
Update-AzWebAppTrafficRouting -ResourceGroupName "Default-Web-WestUS" -WebAppName "ContosoSite" `
3838
-RoutingRule @{ActionHostName='XXXX.azurewebsites.net';ReroutePercentage=50;ChangeIntervalInMinutes=1;MinReroutePercentage=50;MaxReroutePercentage=90;Name='Stg';ChangeStep=10}
3939
```
4040

41-
This command Updates a routing rule to transfer the production traffice to Stg slot ranges from 50% to 90% in incremental manner.
41+
This command Updates a routing rule to transfer the production traffic to Stg slot ranges from 50% to 90% in incremental manner.
4242

4343
## PARAMETERS
4444

azps-12.5.0/Az.Workloads/New-AzWorkloadsSapVirtualInstance.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Name ResourceGroupName Health Environment ProvisioningState SapProduct State
9191
SK1 PowerShell-CLI-TestRG NonProd Succeeded S4HANA RegistrationComplete eastus
9292
```
9393

94-
In this example, you Install the SAP software on the deployed infrastructure for a three tier distributed Highly Availabile SAP system with Transport directory and customized resource naming.
94+
In this example, you Install the SAP software on the deployed infrastructure for a three tier distributed Highly Available SAP system with Transport directory and customized resource naming.
9595

9696
### Example 5: Register an existing SAP system as a VIS
9797
```powershell
@@ -120,7 +120,7 @@ L46 PowerShell-CLI-TestRG NonProd Succeeded S4HANA Regis
120120
Use the New-AzWorkloadsSapVirtualInstance cmdlet with the suggested input parameters to register an existing SAP system as a Virtual Instance for SAP solutions resource with a custom Managed Resource Group and Managed Storage Account Name, and specify the Managed Storage Account Network Access Type setting as per your security requirements.
121121
Learn More: https://go.microsoft.com/fwlink/?linkid=2256933
122122

123-
### Example 7: Deploy infrastructure for a three-tier distributed Highly Available (HA) SAP system with Azure Compute Gallary Image
123+
### Example 7: Deploy infrastructure for a three-tier distributed Highly Available (HA) SAP system with Azure Compute Gallery Image
124124
```powershell
125125
New-AzWorkloadsSapVirtualInstance -ResourceGroupName 'PowerShell-CLI-TestRG' -Name SK1 -Location eastus -Environment 'NonProd' -SapProduct 'S4HANA' -Configuration .\CreatePayloadHACustomNames.json -IdentityType 'UserAssigned' -ManagedResourceGroupName "acss-mrg1" -UserAssignedIdentity @{'/subscriptions/49d64d54-e966-4c46-a868-1999802b762c/resourcegroups/SAP-E2ETest-rg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/E2E-RBAC-MSI'= @{}}
126126
```
@@ -131,7 +131,7 @@ Name ResourceGroupName Health Environment ProvisioningState SapProduct State
131131
SK1 PowerShell-CLI-TestRG NonProd Succeeded S4HANA SoftwareInstallationPending eastus
132132
```
133133

134-
In this example, you Deploy infrastructure for a three-tier distributed Highly Available (HA) SAP system with Azure Compute Gallary Image.
134+
In this example, you Deploy infrastructure for a three-tier distributed Highly Available (HA) SAP system with Azure Compute Gallery Image.
135135
See sample json payload here: https://go.microsoft.com/fwlink/?linkid=2263420
136136

137137
## PARAMETERS

0 commit comments

Comments
 (0)