-
Notifications
You must be signed in to change notification settings - Fork 4k
Spelling Fixes #28090
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 #28090
Conversation
Thanks for your contribution! The pull request validation has started. Please revisit this comment for updated status. |
Thank you for your contribution @ArieHein! We will review the pull request and get back to you soon. |
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 standardizes spelling across comments and user-facing strings without altering code behavior.
- Corrected typos in XML doc comments, inline comments, exception messages, and help messages.
- Unified terms like “credential,” “parameter,” and “container” across multiple modules.
- Ensured consistency in display strings for error cases.
Reviewed Changes
Copilot reviewed 30 out of 30 changed files in this pull request and generated 1 comment.
Show a summary per file
File | Description |
---|---|
src/Storage/Storage/Common/Util.cs | Fixed typos in param descriptions (“instance”, “information”, “return”) |
src/Storage/Storage/Common/TaskOutputStream.cs | Corrected “WriteOuput” → “WriteOutput” and “perfomance” → “performance” |
src/Storage/Storage/Common/StorageExceptionUtil.cs | Fixed “Fordidden” → “Forbidden” in comments and return tags |
src/Storage/Storage/Common/SasTokenHelper.cs | Corrected multiple typos: “Validate”, “container”, “credential”, “account” |
src/Storage/Storage/Common/NameUtil.cs | Fixed “dirctionary” → “dictionary” |
src/Storage/Storage/Common/Cmdlet/NewAzureStorageContext.cs | Fixed “partition” spelling |
src/Storage/Storage/Common/Cmdlet/NewAzureStorageAccountSasToken.cs | Fixed “Permisson” → “Permission” |
src/Storage/Storage/Common/AzureStorageTable.cs | Corrected “construcs” → “constructs” |
src/Storage/Storage/Common/AzureStorageFileDirectory.cs | Fixed “credentail” → “credential” |
src/Storage/Storage/Common/AzureStorageFile.cs | Fixed “credentail” → “credential” |
src/Storage/Storage/Common/AzureStorageContainer.cs | Fixed “fetach” → “fetch” and “credentail” → “credential” |
src/Storage/Storage/Common/AzureStorageBlob.cs | Corrected “automaticlly”, “proeprties”, “veresion”, “credentail” |
src/Storage/Storage/Common/AccessPolicyHelper.cs | Fixed “genreate” → “generate” |
src/Storage/Storage/Blob/StorageDataMovementCmdletBase.cs | Fixed “opeation” → “operation” and “arrary” → “array” |
src/Storage/Storage/Blob/StorageCloudBlobCmdletBase.cs | Fixed “Contianer” → “Container” and “credentail” → “credential” |
src/Storage/Storage/Blob/Cmdlet/StopAzureStorageBlobCopy.cs | Fixed “paremeter” → “parameter” and “supportted” → “supported” |
src/Storage/Storage/Blob/Cmdlet/StartAzureStorageBlobIncrementalCopy.cs | Fixed “paremeter”, “Channl”, “Destinaion”, “mangager” |
src/Storage/Storage/Blob/Cmdlet/StartAzureStorageBlobCopy.cs | Corrected “paremeter”, “destiantion”, “anonumous”, “overwirte”, “mangager” |
src/Storage/Storage/Blob/Cmdlet/SetAzureStorageBlobContent.cs | Fixed “supportted” → “supported” |
src/Storage/Storage/Blob/Cmdlet/SetAzStorageBlobTag.cs | Fixed “paremeter” → “parameter” |
src/Storage/Storage/Blob/Cmdlet/RemoveAzureStorageBlob.cs | Fixed “existance” → “existence” |
src/Storage/Storage/Blob/Cmdlet/NewAzureStorageContainerSasToken.cs | Fixed “paremeter”, “contaienr” |
src/Storage/Storage/Blob/Cmdlet/NewAzureStorageBlobSasToken.cs | Fixed “paremeter”, “contaienr” |
src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlobCopyState.cs | Fixed “paremeter”, “mointor”, “supportted” |
src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlobContent.cs | Fixed “downlaod” → “download” and “libraray” → “library” |
src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlobByTag.cs | Fixed “proeprties” → “properties” |
src/Storage/Storage/Blob/Cmdlet/GetAzureStorageBlob.cs | Fixed “preifx” → “prefix” |
src/Storage/Storage/Blob/Cmdlet/GetAzStorageBlobTag.cs | Fixed “paremeter” → “parameter” |
src/Storage/Storage/Blob/Cmdlet/GetAzStorageBlobQueryResult.cs | Fixed “paremeter” and “preapre” → “prepare” |
src/Storage/Storage/Blob/Cmdlet/CopyAzureStorageBlob.cs | Fixed “Channl” → “Channel” |
@@ -60,7 +60,7 @@ public int? MaxCount | |||
[Parameter(Mandatory = false, HelpMessage = "Continuation Token.")] | |||
public BlobContinuationToken ContinuationToken { get; set; } | |||
|
|||
[Parameter(Mandatory = false, HelpMessage = "As the blobs get by tag don't contain blob proeprties, specify tis parameter to get blob properties with an additional request on each blob.")] | |||
[Parameter(Mandatory = false, HelpMessage = "As the blobs get by tag don't contain blob properties, specify tis parameter to get blob properties with an additional request on each blob.")] |
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.
In the HelpMessage, 'tis' should be 'this' to match standard English usage.
[Parameter(Mandatory = false, HelpMessage = "As the blobs get by tag don't contain blob properties, specify tis parameter to get blob properties with an additional request on each blob.")] | |
[Parameter(Mandatory = false, HelpMessage = "As the blobs get by tag don't contain blob properties, specify this parameter to get blob properties with an additional request on each blob.")] |
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.