Skip to content

Spelling Fixes #28045

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

Closed
wants to merge 1 commit into from
Closed

Spelling Fixes #28045

wants to merge 1 commit into from

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:15
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 fixes various spelling and grammatical errors in comments and displayable strings across the codebase without changing any programmatic behavior.

  • Corrected typos in ChangeLog, scripts, tests, examples, and documentation files
  • Updated comments and help messages for consistency
  • No functional or behavioral changes introduced

Reviewed Changes

Copilot reviewed 26 out of 29 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
src/ConnectedKubernetes/ConnectedKubernetes/ChangeLog.md Fixed typo “updateing” → “updating”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/test/New-AzConnectedKubernetes.Tests.ps1 Corrected “cauhgt” → “caught” and “Envirnomment” → “Environment”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/examples/Set-AzConnectedKubernetes.md Fixed typos in command descriptions and variable $falue$false
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Set-AzConnectedKubernetes.md Mirrored fixes from examples file
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/Remove-AzConnectedKubernetes.md Corrected “Kubconfig” → “Kubeconfig”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/docs/New-AzConnectedKubernetes.md Corrected “Kubconfig” → “Kubeconfig”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/HelmHelper.ps1 Fixed “cannnot” → “can not” and “symantic” → “semantic”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/helpers/ConfigDPHelper.ps1 Fixed “explcitly” → “explicitly”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Set-AzConnectedKubernetes.ps1 Fixed “annd” → “and”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/Remove-AzConnectedKubernetes.ps1 Fixed “Kubconfig” → “Kubeconfig”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/New-AzConnectedKubernetes.ps1 Fixed “hash-tabe” → “hash-table”
src/ConnectedKubernetes/ConnectedKubernetes.Autorest/custom/DEVELOP.md Fixed “manuipulation” → “manipulation”
src/Confluent/Confluent.Autorest/custom/Remove-AzConfluentOrganization.ps1 Fixed “orgnization” → “organization” and “mssage” → “message”
src/Confluent/Confluent.Autorest/README.md Corrected “Agreeemt” → “Agreement” and “cand” → “cant” (remaining grammar noted)
src/Compute/Compute.Test/ScenarioTests/VirtualMachineScaleSetTests.ps1 Fixed “Scalet” → “Scale”
src/Compute/Compute.Test/ScenarioTests/VirtualMachineScaleSetExtensionTests.ps1 Fixed “sepcific” → “specific”
src/Compute/Compute.Test/ScenarioTests/VMDynamicTests.ps1 Fixed “jfor” → “for”
src/Compute/Compute.Test/ScenarioTests/StrategiesVmssTests.ps1 Fixed “Paremeter” → “Parameter” and “follwing” → “following”
src/Compute/Compute.Test/ScenarioTests/StrategiesVirtualMachineTests.ps1 Fixed “Paremeter” → “Parameter” and “follwing” → “following”
src/Compute/Compute.Test/ScenarioTests/SqlIaaSExtensionTests.ps1 Fixed “Verfies” → “Verifies” and “crrect” → “correct”
src/Compute/Compute.Test/ScenarioTests/AEMExtensionTests.ps1 Fixed “positiv” → “positive”
src/Compute/Compute.Autorest/examples/Remove-AzGalleryApplicationVersion.md Fixed “rgNmae” → “rgName”
src/Compute/Compute.Autorest/examples/Remove-AzGalleryApplication.md Fixed “rgNmae” → “rgName”
src/Compute/Compute.Autorest/docs/Remove-AzGalleryApplicationVersion.md Fixed “rgNmae” → “rgName”
src/Compute/Compute.Autorest/docs/Remove-AzGalleryApplication.md Fixed “rgNmae” → “rgName”
src/Compute/Compute.AlcWrapper/AzureStorageService.cs Fixed “repalce” → “replace”

@@ -56,7 +56,7 @@ title: Confluent
subject-prefix: $(service-name)

directive:
# New-AzConfluentMarketplaceAgreeemt has be removed, because it cand be replace by Set-AzMarketplaceTerms (Az.MarketplaceOrdering).
# New-AzConfluentMarketplaceAgreement has be removed, because it cant be replace by Set-AzMarketplaceTerms (Az.MarketplaceOrdering).
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.

Grammar: insert missing 'en' in 'been' and change 'replace' to 'replaced' ("has been removed" and "cannot be replaced").

Suggested change
# New-AzConfluentMarketplaceAgreement has be removed, because it cant be replace by Set-AzMarketplaceTerms (Az.MarketplaceOrdering).
# New-AzConfluentMarketplaceAgreement has been removed, because it cannot be replaced by Set-AzMarketplaceTerms (Az.MarketplaceOrdering).

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
Copy link

This PR was labeled "needs-revision" because it has unresolved review comments or CI failures.
Please resolve all open review comments and make sure all CI checks are green. Refer to our guide to troubleshoot common CI failures.

@YanaXu
Copy link
Contributor

YanaXu commented Jul 10, 2025

Hi @ArieHein, I'm going to close this PR since it can't pass the CI.
Feel free to open new PRs for your update.
And here are some suggestions:

  • Most of the "wrong" words are auto-generated from Azure/azure-rest-api-specs. You'd better to raise PRs to this repo and fix the source words or they will be replaced back at next auto-generation. And your change will be reverted then.
  • Don't update files like src/**/**.Test/** or src/**/**/test/**. They are only for test. If you update them, the CI may fail and your PR can't be merged.
  • Better to raise one PR for all your updates. So, we can keep a single discussion.

@YanaXu YanaXu closed this Jul 10, 2025
auto-merge was automatically disabled July 10, 2025 05:26

Pull request was closed

@ArieHein
Copy link
Contributor Author

ArieHein commented Jul 10, 2025

@YanaXu
So none of the changes in these are in code.
They are all strings or comments. There is no way that any of the fixes to test files in this PR will cause them to fail as no change was done to the code it self. This is just comments or displayable texts. If my changes actually cause any of the tests to fail, the failure is not due to the changes.

I can potentially create a PR with just one test at a time, if you think it will hep but if you look at each of them fixes of that is what is causing the fail, there are other issues.

I can make PRs with way more files but i think it will be hard for you to review but also the CI might not like too mant potential points of failures.

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