Skip to content

Commit 4de1345

Browse files
authored
Spelling Fixes (#28057)
1 parent 0efe3de commit 4de1345

28 files changed

+36
-36
lines changed

src/Migrate/Migrate.Autorest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ directive:
388388
subject: ^Job$
389389
set:
390390
subject: LocalReplicationJob
391-
# Hide cmldets used by custom
391+
# Hide cmdlets used by custom
392392
- from: Microsoft.Migrate/preview/2018-09-01-preview/migrate.json
393393
where:
394394
verb: Set$

src/Migrate/Migrate.Autorest/custom/Get-AzMigrateJob.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
.Synopsis
1818
Retrieves the status of an Azure Migrate job.
1919
.Description
20-
The Get-AzMigrateJob cmdlet retrives the status of an Azure Migrate job.
20+
The Get-AzMigrateJob cmdlet retrieves the status of an Azure Migrate job.
2121
.Link
2222
https://learn.microsoft.com/powershell/module/az.migrate/get-azmigratejob
2323
#>

src/Migrate/Migrate.Autorest/custom/Get-AzMigrateLocalJob.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
.Synopsis
1818
Retrieves the status of an Azure Migrate job.
1919
.Description
20-
The Get-AzMigrateLocalJob cmdlet retrives the status of an Azure Migrate job.
20+
The Get-AzMigrateLocalJob cmdlet retrieves the status of an Azure Migrate job.
2121
.Link
2222
https://learn.microsoft.com/powershell/module/az.migrate/get-azmigratelocaljob
2323
#>

src/Migrate/Migrate.Autorest/custom/Get-AzMigrateServerMigrationStatus.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,7 @@ function Get-AzMigrateServerMigrationStatus {
594594
$resourceUtilizationTable = $resourceUtilizationTable | Format-Table -AutoSize | Out-String
595595
$op = $output.Add($resourceUtilizationTable)
596596
597-
# <To-do> Add Recomendation actions logic for expedite.
597+
# <To-do> Add Recommendation actions logic for expedite.
598598
599599
Write-Host "Based on the resource utilization seen above following are suggestion you can take to expedite server $($ReplicationMigrationItem.MachineName) migration :" -ForegroundColor White
600600
Write-Host "1. Pause replication for servers S2, S3, in delta sync who are migrating under appliance A1."

src/Migrate/Migrate.Autorest/custom/Helper/CommonHelper.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ function IsReservedOrTrademarked {
8484

8585
$uppercased = $Value.ToUpper();
8686

87-
# cannot be exactly one of these, but could be slighlty differnet (e.g. hololens2)
87+
# cannot be exactly one of these, but could be slightly different (e.g. hololens2)
8888
$reservedWords = @(
8989
"ACCESS",
9090
"APP_CODE",

src/Migrate/Migrate.Autorest/custom/Initialize-AzMigrateLocalReplicationInfrastructure.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ function Initialize-AzMigrateLocalReplicationInfrastructure {
641641
$cacheStorageAccountName = "migratersa" + $suffix
642642
$cacheStorageAccountId = "/subscriptions/$($SubscriptionId)/resourceGroups/$($ResourceGroupName)/providers/Microsoft.Storage/storageAccounts/$($cacheStorageAccountName)"
643643

644-
# Check if default Cache Storage Account already exists, which it shoudln't
644+
# Check if default Cache Storage Account already exists, which it shouldn't
645645
$cacheStorageAccount = Get-AzStorageAccount `
646646
-ResourceGroupName $ResourceGroupName `
647647
-Name $cacheStorageAccountName `
@@ -694,7 +694,7 @@ function Initialize-AzMigrateLocalReplicationInfrastructure {
694694
}
695695

696696
if ($null -eq $cacheStorageAccount -or $null -eq $cacheStorageAccount.ProvisioningState) {
697-
throw "Unexpected error occurs during Cache Storgae Account creation process. Please re-run this command or provide -CacheStorageAccountId of the one created own your own."
697+
throw "Unexpected error occurs during Cache Storage Account creation process. Please re-run this command or provide -CacheStorageAccountId of the one created own your own."
698698
}
699699
elseif ($cacheStorageAccount.ProvisioningState -ne [StorageAccountProvisioningState]::Succeeded) {
700700
throw "Cache Storage Account with Id '$($cacheStorageAccount.Id)' times out with Provisioning State: '$($cacheStorageAccount.ProvisioningState)' during creation process. Please remove it manually and re-run this command or contact support if help needed."
@@ -705,7 +705,7 @@ function Initialize-AzMigrateLocalReplicationInfrastructure {
705705
if ($null -eq $cacheStorageAccount -or
706706
$null -eq $cacheStorageAccount.ProvisioningState -or
707707
$cacheStorageAccount.ProvisioningState -ne [StorageAccountProvisioningState]::Succeeded) {
708-
throw "Unexpected error occurs during Cache Storgae Account selection process. Please re-run this command or contact support if help needed."
708+
throw "Unexpected error occurs during Cache Storage Account selection process. Please re-run this command or contact support if help needed."
709709
}
710710

711711
$params = @{

src/Migrate/Migrate.Autorest/custom/New-AzMigrateDiskMapping.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function New-AzMigrateDiskMapping {
5050
[Parameter()]
5151
[Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')]
5252
[System.String]
53-
# Specifies the disk encyption set to be used.
53+
# Specifies the disk encryption set to be used.
5454
${DiskEncryptionSetID}
5555
)
5656

src/Migrate/Migrate.Autorest/custom/New-AzMigrateLocalServerReplication.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ function New-AzMigrateLocalServerReplication {
280280
}
281281

282282
if ($null -eq $sourceFabric) {
283-
throw "No connected source appliances are found. Kindly deploy an appliance by completing the Discover step of the migration jounery on the source cluster."
283+
throw "No connected source appliances are found. Kindly deploy an appliance by completing the Discover step of the migration journey on the source cluster."
284284
}
285285

286286
if ($null -eq $targetFabric) {
@@ -291,7 +291,7 @@ function New-AzMigrateLocalServerReplication {
291291
$sourceDras = InvokeAzMigrateGetCommandWithRetries `
292292
-CommandName 'Az.Migrate.Internal\Get-AzMigrateFabricAgent' `
293293
-Parameters @{ FabricName = $sourceFabric.Name; ResourceGroupName = $ResourceGroupName } `
294-
-ErrorMessage "No connected source appliances are found. Kindly deploy an appliance by completing the Discover step of the migration jounery on the source cluster."
294+
-ErrorMessage "No connected source appliances are found. Kindly deploy an appliance by completing the Discover step of the migration journey on the source cluster."
295295

296296
$sourceDra = $sourceDras[0]
297297

src/Migrate/Migrate.Autorest/custom/New-AzMigrateServerReplication.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ function New-AzMigrateServerReplication {
197197
[Parameter(ParameterSetName = 'ByInputObjectDefaultUser')]
198198
[Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')]
199199
[System.String]
200-
# Specifies the disk encyption set to be used.
200+
# Specifies the disk encryption set to be used.
201201
${DiskEncryptionSetID},
202202

203203
[Parameter()]

src/Migrate/Migrate.Autorest/custom/Set-AzMigrateLocalServerReplication.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function Set-AzMigrateLocalServerReplication {
4949
[Parameter()]
5050
[Microsoft.Azure.PowerShell.Cmdlets.Migrate.Category('Path')]
5151
[Microsoft.Azure.PowerShell.Cmdlets.Migrate.Models.Api20240901.ProtectedItemDynamicMemoryConfig]
52-
# Specifies the dynamic memory configration of RAM.
52+
# Specifies the dynamic memory configuration of RAM.
5353
${DynamicMemoryConfig},
5454

5555
[Parameter()]

0 commit comments

Comments
 (0)