-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Spelling Fixes #28047
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
Spelling Fixes #28047
Conversation
Thanks for your contribution! The pull request validation has started. Please revisit this comment for updated status. |
There was a problem hiding this 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 spelling errors in comments and user-facing strings across multiple modules without altering any functional code.
- Standardized spelling in comments, resource strings, help XML, and change logs.
- Ensured consistency in terminology (e.g., "parameter", "integration", "provider").
- Improved clarity of displayable text in examples and tests.
Reviewed Changes
Copilot reviewed 24 out of 29 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
src/Datadog/Datadog.Autorest/test/utils.ps1 | Corrected comment typo ("Eable" → "Enable") |
src/DataFactory/DataFactoryV2/Properties/Resources.resx | Fixed resource string typos (e.g., "renegerate" → "regenerate") |
src/DataFactory/DataFactoryV2/Models/DataFactoryClient.IntegrationRuntimes.cs | Fixed comment typo ("integraiton" → "integration") |
src/DataFactory/DataFactoryV2/IntegrationRuntimes/StopAzureDataFactoryIntegrationRuntimeCommand.cs | Updated comment spelling ("senario" → "scenario") |
src/DataFactory/DataFactoryV2/IntegrationRuntimes/StartAzureDataFactoryIntegrationRuntimeCommand.cs | Updated comment spelling ("senario" → "scenario") |
src/DataFactory/DataFactoryV2/IntegrationRuntimes/SetAzureDataFactoryIntegrationRuntimeCommandHelper.cs | Corrected comment typo ("paramaters" → "parameters") |
src/DataFactory/DataFactoryV2.Test/ScenarioTests/IntegrationRuntimeTests.ps1 | Fixed comments ("provisionning" → "provisioning", "selfhsoted" → "selfhosted") |
src/DataFactory/DataFactoryV2.Test/ScenarioTests/DataFactoryTests.ps1 | Corrected synopsis spelling ("proepties" → "properties") |
src/DataFactory/DataFactoryV1/Properties/Resources.resx | Fixed resource string typos ("exsits" → "exists") |
src/DataFactory/DataFactoryV1.Test/ScenarioTests/DataFactoryTests.ps1 | Corrected synopsis spelling ("Nagative" → "Negative") |
src/DataFactory/DataFactoryV1.Test/ScenarioTests/DataFactoryGatewayTests.ps1 | Corrected synopsis spelling ("Nagative" → "Negative") |
src/DataBoxEdge/DataBoxEdge/Microsoft.Azure.PowerShell.Cmdlets.DataBoxEdge.dll-Help.xml | Fixed cmdlet name typo ("Triger" → "Trigger") |
src/DataBoxEdge/DataBoxEdge/Common/Constants.cs | Corrected comment typos ("Comands" → "Commands") |
src/DataBoxEdge/DataBoxEdge/ChangeLog.md | Fixed multiple changelog typos ("creted" → "created", "assosciated" → "associated") |
src/DataBoxEdge/DataBoxEdge.Management.Sdk/Customizations/CryptoUtilities.cs | Corrected comment typo ("decrytor" → "decryptor") |
src/DataBox/DataBox/ChangeLog.md | Fixed changelog spelling ("optiona" → "optional", "folowing" → "following") |
src/DataBox/DataBox/Az.DataBox.psd1 | Updated ReleaseNotes spelling ("optiona" → "optional") |
src/DataBox/DataBox.Autorest/examples/Update-AzDataBoxJob.md | Corrected example description ("sytem" → "system") |
src/DataBox/DataBox.Autorest/docs/Update-AzDataBoxJob.md | Corrected documentation ("sytem" → "system") |
src/CustomProviders/CustomProviders.Autorest/examples/Update-AzCustomProviderAssociation.md | Fixed example typo ("provioder" → "provider") |
src/CustomProviders/CustomProviders.Autorest/examples/New-AzCustomProviderAssociation.md | Fixed example typo ("provioder" → "provider") |
src/CustomProviders/CustomProviders.Autorest/docs/Update-AzCustomProviderAssociation.md | Fixed doc typo ("provioder" → "provider") |
src/CustomProviders/CustomProviders.Autorest/docs/New-AzCustomProviderAssociation.md | Fixed doc typo ("provioder" → "provider") |
src/CostManagement/CostManagement.Autorest/test/test-script.ps1 | Corrected comment spelling ("colum" → "column") |
Files not reviewed (2)
- src/DataFactory/DataFactoryV1/Properties/Resources.Designer.cs: Language not supported
- src/DataFactory/DataFactoryV2/Properties/Resources.Designer.cs: Language not supported
Comments suppressed due to low confidence (2)
src/DataFactory/DataFactoryV2/IntegrationRuntimes/StopAzureDataFactoryIntegrationRuntimeCommand.cs:52
- The comment uses 'execution' instead of 'exception', which changes its meaning. It should read 'Just suppress the exception.'
// the property can't be changed. Just suppress the execution.
src/DataFactory/DataFactoryV2/IntegrationRuntimes/StartAzureDataFactoryIntegrationRuntimeCommand.cs:47
- The comment uses 'execution' instead of 'exception', which changes its meaning. It should read 'Just suppress the exception.'
// the property can't be changed. Just suppress the execution.
</command:details> | ||
<maml:description> | ||
<maml:para>The Get-AzDataBoxEdgeTriger cmdlet gets the triggers for a device. You can specify the name as a parameter in the cmdlet to fetch the details of a specific specific Triggers</maml:para> | ||
<maml:para>The Get-AzDataBoxEdgeTrigger cmdlet gets the triggers for a device. You can specify the name as a parameter in the cmdlet to fetch the details of a specific specific Triggers</maml:para> |
Copilot
AI
Jun 29, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a duplicated 'specific'. Remove the extra to read 'a specific trigger' or 'a specific set of triggers'.
<maml:para>The Get-AzDataBoxEdgeTrigger cmdlet gets the triggers for a device. You can specify the name as a parameter in the cmdlet to fetch the details of a specific specific Triggers</maml:para> | |
<maml:para>The Get-AzDataBoxEdgeTrigger cmdlet gets the triggers for a device. You can specify the name as a parameter in the cmdlet to fetch the details of a specific Trigger</maml:para> |
Copilot uses AI. Check for mistakes.
/azp run azure-powershell - security-tools |
Azure Pipelines successfully started running 1 pipeline(s). |
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
Please choose the target release of Azure PowerShell. (⚠️ Target release is a different concept from API readiness. Please click below links for details.)
Check this box to confirm: I have read the Submitting Changes section of
CONTRIBUTING.md
and reviewed the following information:ChangeLog.md
file(s) appropriatelysrc/{{SERVICE}}/{{SERVICE}}/ChangeLog.md
.## Upcoming Release
header in the past tense.ChangeLog.md
if no new release is required, such as fixing test case only.