Skip to content

Spelling Fixes #28072

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 1, 2025
Merged

Spelling Fixes #28072

merged 1 commit into from
Jul 1, 2025

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 30, 2025 19: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

This PR corrects various spelling errors in comments, displayable strings, and documentation across multiple modules, with no changes to code behavior.

  • Fixed typos in resource strings and help messages.
  • Corrected spelling in test scripts and CLI examples.
  • Updated documentation and Markdown files for consistency.

Reviewed Changes

Copilot reviewed 26 out of 27 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
src/Security/Security/Resources.resx Fixed typo in SQL information message
src/Security/Security/Common/ParameterHelpMessages.cs Corrected “Progremmatic” to “Programmatic”
src/Security/Security.Test/ScenarioTests/SqlVulnerabilityAssessmentTests.ps1 Fixed “worskspace” to “workspace”
src/Security/Security.Test/ScenarioTests/SecurityTopologyTests.ps1 Adjusted spelling in synopsis
src/Security/Security.Test/ScenarioTests/SecurityComplianceTests.ps1 Corrected provider namespace typo
src/Security/Security.Test/ScenarioTests/IotSecuritySolutionAnalyticsTests.ps1 Fixed “defualt” to “default”
src/Security/Security.Autorest/test/New-AzSecurityConnectorDevOpsConfiguration.Tests.ps1 Corrected “complecated” to “complicated”
src/Security/Security.Autorest/test/New-AzSecurityConnector.Tests.ps1 Corrected “complecated” to “complicated”
src/Security/DefenderForStorage.Autorest/test/utils.ps1 Fixed “Deleteing” to “Deleting”
src/Search/Search/SearchService/SearchServiceBaseCmdlet.cs Corrected “authenticaiton” to “authentication”
src/ScVmm/ScVmm.Autorest/examples/Update-AzScVmmVMNic.md Fixed “MacAddewss” to “MacAddress”
src/ScVmm/ScVmm.Autorest/docs/Update-AzScVmmVMNic.md Corrected typo in MAC property name
src/ScVmm/ScVmm.Autorest/custom/Update-AzScVmmVM.ps1 Fixed “Comnpute” to “Compute”
src/ScVmm/ScVmm.Autorest/custom/New-AzScVmmVM.ps1 Fixed “Comnpute” to “Compute”
src/ScVmm/ScVmm.Autorest/README.md Corrected “remvoe” and “ohter” typos
src/ResourceMover/ResourceMover.Autorest/examples/Invoke-AzResourceMoverPrepare.md Fixed “dependecies” to “dependencies”
src/ResourceMover/ResourceMover.Autorest/examples/Invoke-AzResourceMoverInitiateMove.md Fixed “dependecies” to “dependencies”
src/ResourceMover/ResourceMover.Autorest/examples/Invoke-AzResourceMoverDiscard.md Fixed “dependecies” to “dependencies”
src/ResourceMover/ResourceMover.Autorest/examples/Invoke-AzResourceMoverCommit.md Fixed “dependecies” to “dependencies”
src/ResourceMover/ResourceMover.Autorest/docs/Invoke-AzResourceMoverPrepare.md Fixed “dependecies” to “dependencies”
src/ResourceMover/ResourceMover.Autorest/docs/Invoke-AzResourceMoverInitiateMove.md Fixed “dependecies” to “dependencies”
src/ResourceMover/ResourceMover.Autorest/docs/Invoke-AzResourceMoverDiscard.md Fixed “dependecies” to “dependencies”
src/ResourceMover/ResourceMover.Autorest/docs/Invoke-AzResourceMoverCommit.md Fixed “dependecies” to “dependencies”
src/ResourceMover/ResourceMover.Autorest/docs/Invoke-AzResourceMoverBulkRemove.md Corrected typo in “dependenciesss”
src/Reservations/Reservations.Autorest/examples/Get-AzReservationCatalog.md Fixed “catlog” to “catalog”
src/Reservations/Reservations.Autorest/docs/Get-AzReservationCatalog.md Fixed “catlog” to “catalog”
Files not reviewed (1)
  • src/Security/Security/Resources.Designer.cs: Language not supported

@@ -66,7 +66,7 @@ function Validate-SecurityTopologies

<#
.SYNOPSIS
Validates a single SecurityTopologie
Validates a single SecurityTopologies
Copy link
Preview

Copilot AI Jun 30, 2025

Choose a reason for hiding this comment

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

The synopsis incorrectly uses the plural 'SecurityTopologies' for a single topology; consider using 'SecurityTopology' instead.

Suggested change
Validates a single SecurityTopologies
Validates a single SecurityTopology

Copilot uses AI. Check for mistakes.

@@ -113,7 +113,7 @@ Type : microsoft.scvmm/virtualmachineinsta
```

Update Network Interface of the SCVMM Virtual Machine.
It might take some time to sync the MacAddewss and Ipv4Address in the response.
It might take some time to sync the MacAdders and Ipv4Address in the response.
Copy link
Preview

Copilot AI Jun 30, 2025

Choose a reason for hiding this comment

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

Typo in 'MacAdders'; should be 'MacAddress' to match the correct property name.

Suggested change
It might take some time to sync the MacAdders and Ipv4Address in the response.
It might take some time to sync the macAddress and Ipv4Address in the response.

Copilot uses AI. Check for mistakes.

@@ -31,7 +31,7 @@ To aid the user to prerequisite the operation the client can call operation with

## EXAMPLES

### Example 1: Validate the dependecies before remove of the Move Resources from Move Collection
### Example 1: Validate the dependenciesss before remove of the Move Resources from Move Collection
Copy link
Preview

Copilot AI Jun 30, 2025

Choose a reason for hiding this comment

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

Extra 's' in 'dependenciesss'; should be 'dependencies'.

Suggested change
### Example 1: Validate the dependenciesss before remove of the Move Resources from Move Collection
### Example 1: Validate the dependencies before remove of the Move Resources from Move Collection

Copilot uses AI. Check for mistakes.

@YanaXu
Copy link
Contributor

YanaXu commented Jul 1, 2025

/azp run azure-powershell - security-tools

Copy link
Contributor

Azure Pipelines successfully started running 1 pipeline(s).

@YanaXu YanaXu enabled auto-merge (squash) July 1, 2025 02:11
@YanaXu YanaXu merged commit af73943 into Azure:main Jul 1, 2025
13 checks passed
@ArieHein ArieHein deleted the wave-27 branch July 1, 2025 10:01
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