Fix a few simple typos in comments and string outputs#25805
Merged
Conversation
iSazonov
approved these changes
Aug 1, 2025
Collaborator
|
/azp run PowerShell-CI-linux-packaging,PowerShell-Windows-Packaging-CI |
|
Azure Pipelines successfully started running 2 pipeline(s). |
kilasuit
approved these changes
Aug 1, 2025
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR corrects spelling errors in comments and one verbose output message across multiple PowerShell and C# files. The changes improve code documentation clarity without affecting any functional code or symbol names.
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| tools/packaging/packaging.psm1 | Fixed "pacakge" to "package" in two comment instances |
| test/tools/Modules/Microsoft.PowerShell.RemotingTools/Microsoft.PowerShell.RemotingTools.psm1 | Corrected "subsytem" to "subsystem" in parameter documentation |
| test/powershell/Modules/Microsoft.PowerShell.Utility/clixml.tests.ps1 | Fixed "avaiable" to "available" in test setup comment |
| src/System.Management.Automation/engine/remoting/common/RunspaceConnectionInfo.cs | Corrected "conects" to "connects" in SSH process comment |
| assets/MicrosoftUpdate/RegisterMicrosoftUpdate.ps1 | Fixed "predifened" to "predefined" in comment and "Autmatic" to "Automatic" in Write-Verbose output |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
TravisEz13
approved these changes
Oct 22, 2025
Contributor
|
📣 Hey @@ThioJoe, how did we do? We would love to hear your feedback with the link below! 🗣️ 🔗 https://aka.ms/PSRepoFeedback |
SIRMARGIN
pushed a commit
to SIRMARGIN/PowerShell
that referenced
this pull request
Dec 12, 2025
Co-authored-by: Travis Plunk <travis.plunk@microsoft.com>
kilasuit
pushed a commit
to kilasuit/PowerShell
that referenced
this pull request
Jan 2, 2026
Co-authored-by: Travis Plunk <travis.plunk@microsoft.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Summary
Fix some simple word mispellings in code comments and console outputs.
PR Context
Addresses #25801
Some obvious spelling mistakes I found. It's mostly comments, except one line where it's a
Write-Verboseconsole print. So nothing that would affect references or symbol names.PR Checklist
PR has a meaningful title
Summarized changes
Make sure all
.h,.cpp,.cs,.ps1and.psm1files have the correct copyright headerThis PR is ready to merge. If this PR is a work in progress, please open this as a Draft Pull Request and mark it as Ready to Review when it is ready to merge.
Breaking changes
User-facing changes
Write-Verboseline. The rest are comments.Testing - New and feature