Skip to content

Commit 772ee6e

Browse files
authored
Spelling Fixes (#28069)
1 parent 3727599 commit 772ee6e

File tree

25 files changed

+33
-33
lines changed

25 files changed

+33
-33
lines changed

src/Portal/Portal.Autorest/docs/Remove-AzPortalDashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Deletes the Dashboard.
3434
Remove-AzPortalDashboard -ResourceGroupName my-rg -DashboardName dashbase02
3535
```
3636

37-
Remove a Dashbaord using resource group name and dashboard name.
37+
Remove a Dashboard using resource group name and dashboard name.
3838

3939
### Example 2: Remove a Dashboard using the pipeline
4040
```powershell

src/Portal/Portal.Autorest/docs/Set-AzPortalDashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Location Name Type
3333
eastasia dashbase03 Microsoft.Portal/dashboards
3434
```
3535

36-
Update a dashboard definition using a dashbaord template file.
36+
Update a dashboard definition using a dashboard template file.
3737

3838
## PARAMETERS
3939

src/Portal/Portal.Autorest/examples/Remove-AzPortalDashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Remove-AzPortalDashboard -ResourceGroupName my-rg -DashboardName dashbase02
44
```
55

6-
Remove a Dashbaord using resource group name and dashboard name.
6+
Remove a Dashboard using resource group name and dashboard name.
77

88
### Example 2: Remove a Dashboard using the pipeline
99
```powershell

src/Portal/Portal.Autorest/examples/Set-AzPortalDashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Location Name Type
99
eastasia dashbase03 Microsoft.Portal/dashboards
1010
```
1111

12-
Update a dashboard definition using a dashbaord template file.
12+
Update a dashboard definition using a dashboard template file.
1313

src/PostgreSql/PostgreSql.Autorest/docs/Update-AzPostgreSqlFlexibleServerConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Use Update-AzPostgreSqlFlexibleServer instead if you want update AdministratorLo
3232

3333
## EXAMPLES
3434

35-
### Example 1: Updatae specified PostgreSql configuration by name
35+
### Example 1: Update specified PostgreSql configuration by name
3636
```powershell
3737
Update-AzPostgreSqlFlexibleServerConfiguration -Name work_mem -ResourceGroupName PowershellPostgreSqlTest -ServerName postgresql-test -Value 8192
3838
```
@@ -46,7 +46,7 @@ work_mem 8192 4096-2097151 system-default 4096
4646

4747
This cmdlet updates specified PostgreSql configuration by name.
4848

49-
### Example 2: Updatae specified PostgreSql configuration by identity
49+
### Example 2: Update specified PostgreSql configuration by identity
5050
```powershell
5151
$ID = "/subscriptions/<SubscriptionId>/resourceGroups/PowershellPostgreSqlTest/providers/Microsoft.DBforPostgreSQL/flexibleServers/postgresql-test/configurations/work_mem"
5252
Update-AzPostgreSqlFlexibleServerConfiguration -Name work_mem -ResourceGroupName PowershellPostgreSqlTest -ServerName postgresql-test -Value 8192

src/PostgreSql/PostgreSql.Autorest/examples/Update-AzPostgreSqlFlexibleServerConfiguration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
### Example 1: Updatae specified PostgreSql configuration by name
1+
### Example 1: Update specified PostgreSql configuration by name
22
```powershell
33
Update-AzPostgreSqlFlexibleServerConfiguration -Name work_mem -ResourceGroupName PowershellPostgreSqlTest -ServerName postgresql-test -Value 8192
44
```
@@ -12,7 +12,7 @@ work_mem 8192 4096-2097151 system-default 4096
1212

1313
This cmdlet updates specified PostgreSql configuration by name.
1414

15-
### Example 2: Updatae specified PostgreSql configuration by identity
15+
### Example 2: Update specified PostgreSql configuration by identity
1616
```powershell
1717
$ID = "/subscriptions/<SubscriptionId>/resourceGroups/PowershellPostgreSqlTest/providers/Microsoft.DBforPostgreSQL/flexibleServers/postgresql-test/configurations/work_mem"
1818
Update-AzPostgreSqlFlexibleServerConfiguration -Name work_mem -ResourceGroupName PowershellPostgreSqlTest -ServerName postgresql-test -Value 8192

src/PostgreSql/PostgreSql.Autorest/test/AzPostgreSqlFlexibleServer.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Describe 'AzPostgreSqlFlexibleServer' {
4343
# restart
4444
Restart-AzPostgreSqlFlexibleServer -ResourceGroupName $env.resourceGroup -ServerName $env.flexibleServerName
4545

46-
# update - half paramaeters
46+
# update - half parameters
4747
$UpdatedServer = Update-AzPostgreSqlFlexibleServer -ResourceGroupName $env.resourceGroup -ServerName $env.flexibleServerName -MaintenanceWindow Mon:1:20
4848
$UpdatedServer.MaintenanceWindowCustomWindow | Should -Be 'Enabled'
4949
$UpdatedServer.MaintenanceWindowDayOfWeek | Should -Be 1

src/PostgreSql/PostgreSql.Autorest/test/utils.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ function setupEnv() {
126126
}
127127
function cleanupEnv() {
128128
# Clean resources you create for testing
129-
# Removing resourcegroup will clean all the resources created for testing.
129+
# Removing resource group will clean all the resources created for testing.
130130
write-host "Clean resources you create for testing."
131131
Remove-AzResourceGroup -Name $env.resourceGroup
132132
}

src/PostgreSql/PostgreSql/ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
* Added validateset for parameter StorageAutogrow (#12736)
7373
* Used 'master' and 'replica' to avoid confusion when created postgresql replica server (#12743)
7474
* Provided hint in doc to use Update-AzPostgreSqlServer & Update-AzPostgreSqlServerConfiguration as a candidate for each other (#12745)
75-
* Fix secure string decrytion issue in PowerShell 7 (#12956)
75+
* Fix secure string decryption issue in PowerShell 7 (#12956)
7676

7777
## Version 0.1.0
7878
* the first preview release

src/PowerBIEmbedded/PowerBI.Test/ScenarioTests/PowerBITests.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function Test-PowerBIEmbeddedCapacity
5353
Assert-AreEqual "Microsoft.PowerBIDedicated/capacities" $capacityUpdated.Type
5454
Assert-True {$capacityUpdated.Id -like "*$resourceGroupName*"}
5555

56-
# List all capacitys in resource group
56+
# List all capacities in resource group
5757
[array]$capacitysInResourceGroup = Get-AzPowerBIEmbeddedCapacity -ResourceGroupName $resourceGroupName
5858
Assert-True {$capacitysInResourceGroup.Count -ge 1}
5959

@@ -94,7 +94,7 @@ function Test-PowerBIEmbeddedCapacity
9494

9595
# Suspend PowerBI Embedded capacity
9696
$capacityGetItem = Suspend-AzPowerBIEmbeddedCapacity -ResourceGroupName $resourceGroupName -Name $capacityName -PassThru
97-
# this is to ensure backward compatibility compatibility. The servie side would make change to differenciate state and provisioningState in future
97+
# this is to ensure backward compatibility compatibility. The service side would make change to differentiate state and provisioningState in future
9898
Assert-True {$capacityGetItem.State -like "Paused"}
9999
Assert-AreEqual $resourceGroupName $capacityGetItem.ResourceGroup
100100

@@ -158,7 +158,7 @@ function Test-PowerBIEmbeddedCapacityScale
158158
Assert-AreEqual A2 $capacityUpdated.Sku
159159

160160
$capacityGetItem = Suspend-AzPowerBIEmbeddedCapacity -ResourceGroupName $resourceGroupName -Name $capacityName -PassThru
161-
# this is to ensure backward compatibility compatibility. The servie side would make change to differenciate state and provisioningState in future
161+
# this is to ensure backward compatibility compatibility. The service side would make change to differentiate state and provisioningState in future
162162
Assert-True {$capacityGetItem.State -like "Paused"}
163163

164164
# Scale down A2 -> A1

0 commit comments

Comments
 (0)