Skip to content

Conversation

ArieHein
Copy link
Contributor

Description

This does spelling fixes in codebase files that are either:

in comments.
in displayable strings.
There are NO other changes to programmatic aspects or code behavior.

Mandatory Checklist

  • SHOULD update ChangeLog.md file(s) appropriately
    • Update src/{{SERVICE}}/{{SERVICE}}/ChangeLog.md.
      • A snippet outlining the change(s) made in the PR should be written under the ## Upcoming Release header in the past tense.
    • Should not change ChangeLog.md if no new release is required, such as fixing test case only.
  • SHOULD regenerate markdown help files if there is cmdlet API change. Instruction
  • SHOULD have proper test coverage for changes in pull request.
  • SHOULD NOT adjust version of module manually in pull request

@Copilot Copilot AI review requested due to automatic review settings June 29, 2025 22:36
Copy link

Thanks for your contribution! The pull request validation has started. Please revisit this comment for updated status.

Copy link
Contributor

Thank you for your contribution @ArieHein! We will review the pull request and get back to you soon.

Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

The PR addresses various spelling mistakes in comments and displayable strings across example scripts, documentation files, and test scripts.

  • Corrected typos in example titles and descriptions (e.g., “Reapir” → “Repair”, “Provisoning” → “Provisioning”)
  • Fixed hyphenation and misspellings in admin network examples (e.g., “hybid” → “hybrid”)
  • Updated test script comments and application group spelling (“corrct” → “correct”, “applicaton” → “application”)

Reviewed Changes

Copilot reviewed 34 out of 35 changed files in this pull request and generated 4 comments.

File Description
src/DevCenter/DevCenterData.AutoRest/examples/Repair-AzDevCenterUserDevBox.md Fixed “Reapir” typo in example heading
src/DevCenter/DevCenterData.AutoRest/examples/New-AzDevCenterUserDevBoxCustomizationGroup.md Corrected “Provisoning” in multiple comment lines
src/DesktopVirtualization/DesktopVirtualization.Autorest/test/Update-AzWvdHostPool.Tests.ps1 Updated “corrct” to “correct” in todo comments

Comment on lines 18 to 31
### Example 2: Create a customization groupby dev center
```powershell
New-AzDevCenterUserDevBoxCustomizationGroup -DevCenterName Contoso -ProjectName DevProject -UserId "me" -DevBoxName myDevBox -CustomizationGroupName Provisioning -Task $tasks
```
This command creates the customization group "Provisoning" for the dev box "myDevBox".
This command creates the customization group "Provisioning" for the dev box "myDevBox".

### Example 3: Create a customization groupby endpoint and InputObject
```powershell
$customizationGroupInput = @{"CustomizationGroupName" = "Provisioning"; "DevBoxName" = "myDevBox"; "UserId" = "me"; "ProjectName" = "DevProject" }
New-AzDevCenterUserDevBoxCustomizationGroup -Endpoint "https://8a40af38-3b4c-4672-a6a4-5e964b1870ed-contosodevcenter.centralus.devcenter.azure.com/" -InputObject $customizationGroupInput -Task $tasks
```
This command creates the customization group "Provisoning" for the dev box "myDevBox".
This command creates the customization group "Provisioning" for the dev box "myDevBox".

### Example 4: Create a customization groupby dev center and InputObject
Copy link
Preview

Copilot AI Jun 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert a space in "groupby" to read "group by" for correct phrasing.

Copilot uses AI. Check for mistakes.

Comment on lines 18 to 31
### Example 2: Create a customization groupby dev center
```powershell
New-AzDevCenterUserDevBoxCustomizationGroup -DevCenterName Contoso -ProjectName DevProject -UserId "me" -DevBoxName myDevBox -CustomizationGroupName Provisioning -Task $tasks
```
This command creates the customization group "Provisoning" for the dev box "myDevBox".
This command creates the customization group "Provisioning" for the dev box "myDevBox".

### Example 3: Create a customization groupby endpoint and InputObject
```powershell
$customizationGroupInput = @{"CustomizationGroupName" = "Provisioning"; "DevBoxName" = "myDevBox"; "UserId" = "me"; "ProjectName" = "DevProject" }
New-AzDevCenterUserDevBoxCustomizationGroup -Endpoint "https://8a40af38-3b4c-4672-a6a4-5e964b1870ed-contosodevcenter.centralus.devcenter.azure.com/" -InputObject $customizationGroupInput -Task $tasks
```
This command creates the customization group "Provisoning" for the dev box "myDevBox".
This command creates the customization group "Provisioning" for the dev box "myDevBox".

### Example 4: Create a customization groupby dev center and InputObject
Copy link
Preview

Copilot AI Jun 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert a space in "groupby" to read "group by" for correct phrasing.

Copilot uses AI. Check for mistakes.

Comment on lines 64 to 71
### Example 2: Create a customization groupby dev center
```powershell
New-AzDevCenterUserDevBoxCustomizationGroup -DevCenterName Contoso -ProjectName DevProject -UserId "me" -DevBoxName myDevBox -CustomizationGroupName Provisioning -Task $tasks
```

This command creates the customization group "Provisoning" for the dev box "myDevBox".
This command creates the customization group "Provisioning" for the dev box "myDevBox".

### Example 3: Create a customization groupby endpoint and InputObject
Copy link
Preview

Copilot AI Jun 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert a space in "groupby" to read "group by" for correct phrasing.

Copilot uses AI. Check for mistakes.


### Example 3: Create a customization groupby endpoint and InputObject
```powershell
$customizationGroupInput = @{"CustomizationGroupName" = "Provisioning"; "DevBoxName" = "myDevBox"; "UserId" = "me"; "ProjectName" = "DevProject" }
New-AzDevCenterUserDevBoxCustomizationGroup -Endpoint "https://8a40af38-3b4c-4672-a6a4-5e964b1870ed-contosodevcenter.centralus.devcenter.azure.com/" -InputObject $customizationGroupInput -Task $tasks
```

This command creates the customization group "Provisoning" for the dev box "myDevBox".
This command creates the customization group "Provisioning" for the dev box "myDevBox".

### Example 4: Create a customization groupby dev center and InputObject
Copy link
Preview

Copilot AI Jun 29, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Insert a space in "groupby" to read "group by" for correct phrasing.

Suggested change
### Example 4: Create a customization groupby dev center and InputObject
### Example 4: Create a customization group by dev center and InputObject

Copilot uses AI. Check for mistakes.

@YanaXu
Copy link
Contributor

YanaXu commented Jun 30, 2025

/azp run azure-powershell - security-tools

Copy link
Contributor

Azure Pipelines successfully started running 1 pipeline(s).

@YanaXu YanaXu enabled auto-merge (squash) June 30, 2025 03:35
@YanaXu YanaXu merged commit f4a9320 into Azure:main Jun 30, 2025
13 checks passed
@ArieHein ArieHein deleted the wave-11 branch June 30, 2025 14:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants