Skip to content

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

Merged
merged 1 commit into from
Jul 4, 2025
Merged

Spelling Fixes #28090

merged 1 commit into from
Jul 4, 2025

Conversation

ArieHein
Copy link
Contributor

@ArieHein ArieHein commented Jul 1, 2025

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 July 1, 2025 20:33
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 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.")]
Copy link
Preview

Copilot AI Jul 1, 2025

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.

Suggested change
[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.

@YanaXu
Copy link
Contributor

YanaXu commented Jul 2, 2025

/azp run azure-powershell - security-tools

Copy link
Contributor

Azure Pipelines successfully started running 1 pipeline(s).

@YanaXu YanaXu merged commit 32ab9b8 into Azure:main Jul 4, 2025
13 checks passed
@ArieHein ArieHein deleted the wave-34 branch July 4, 2025 20:46
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