From 0a57d69853794e189481c3927b442f6a09f5c74a Mon Sep 17 00:00:00 2001 From: teenager-ETH Date: Fri, 3 Jan 2025 16:08:16 +0100 Subject: [PATCH] typo fix Update wmake.ps1 (#13228) # Typo Fix in `wmake.ps1` ## Description This pull request addresses a typo in the `wmake.ps1` file: - Corrected "insterted" to "inserted" in a comment. ## Changes - Improved the accuracy of comments by fixing a minor spelling error. ## Testing This change only updates a comment in the script and does not affect the script's functionality. No additional testing is required. ## Notes for Reviewers Please review the corrected comment to ensure compliance with the project's documentation standards. Let me know if further updates are necessary. Thank you! --- wmake.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wmake.ps1 b/wmake.ps1 index f1397750efb..8ebcfec54fd 100644 --- a/wmake.ps1 +++ b/wmake.ps1 @@ -160,7 +160,7 @@ function Get-Uninstall-Item { param ([string]$pattern = $(throw "A search pattern must be provided")) # Trying to get the enumerable of all installed programs using Get-ItemProperty may cause - # exceptions due to possible garbage values insterted into the registry by installers. + # exceptions due to possible garbage values inserted into the registry by installers. # Specifically an invalid cast exception throws when registry keys contain invalid DWORD data. # See https://github.com/PowerShell/PowerShell/issues/9552 # Due to this all items must be parsed one by one