Spell Checking Fixes (#39985)

<!-- Enter a brief description/summary of your PR here. What does it
fix/what does it change/how was it tested (even manually, if necessary)?
-->
## Summary of the Pull Request
Fixes spelling issues and spell checker warnings
This commit is contained in:
rovercoder
2025-06-11 18:32:38 +02:00
committed by GitHub
parent 55b9b52349
commit b9aac70de5
4 changed files with 5 additions and 22 deletions

View File

@@ -92,6 +92,7 @@
^\.github/actions/spell-check/ ^\.github/actions/spell-check/
^\.gitmodules$ ^\.gitmodules$
^\Q.github/workflows/spelling2.yml\E$ ^\Q.github/workflows/spelling2.yml\E$
^\Q.pipelines/272MSSharedLibSN2048.snk\E$
^\Q.pipelines/ESRPSigning_core.json\E$ ^\Q.pipelines/ESRPSigning_core.json\E$
^\Qdoc/devdocs/localization.md\E$ ^\Qdoc/devdocs/localization.md\E$
^\Qsrc/common/ManagedCommon/ColorFormatHelper.cs\E$ ^\Qsrc/common/ManagedCommon/ColorFormatHelper.cs\E$
@@ -120,6 +121,7 @@
^src/modules/MouseWithoutBorders/App/Form/.*\.resx$ ^src/modules/MouseWithoutBorders/App/Form/.*\.resx$
^src/modules/MouseWithoutBorders/App/Helper/.*\.resx$ ^src/modules/MouseWithoutBorders/App/Helper/.*\.resx$
^src/modules/previewpane/UnitTests-MarkdownPreviewHandler/HelperFiles/MarkdownWithHTMLImageTag\.txt$ ^src/modules/previewpane/UnitTests-MarkdownPreviewHandler/HelperFiles/MarkdownWithHTMLImageTag\.txt$
^src/modules/ZoomIt/ZoomIt/ZoomIt\.idc$
^src/Monaco/ ^src/Monaco/
^src/common/sysinternals/Eula/ ^src/common/sysinternals/Eula/
^tools/Verification scripts/Check preview handler registration\.ps1$ ^tools/Verification scripts/Check preview handler registration\.ps1$

View File

@@ -328,7 +328,6 @@ DEFAULTTONULL
DEFAULTTOPRIMARY DEFAULTTOPRIMARY
DEFERERASE DEFERERASE
DEFPUSHBUTTON DEFPUSHBUTTON
DEFT
deinitialization deinitialization
DELA DELA
DELETEDKEYIMAGE DELETEDKEYIMAGE
@@ -670,7 +669,6 @@ IBeam
icf icf
ICONERROR ICONERROR
ICONLOCATION ICONLOCATION
idc
IDCANCEL IDCANCEL
IDD IDD
idk idk
@@ -681,7 +679,6 @@ IDR
IDXGI IDXGI
ietf ietf
IEXPLORE IEXPLORE
iextn
IFACEMETHOD IFACEMETHOD
IFACEMETHODIMP IFACEMETHODIMP
IFile IFile
@@ -720,7 +717,6 @@ INPUTMOUSE
INPUTSINK INPUTSINK
INPUTTYPE INPUTTYPE
INSTALLDESKTOPSHORTCUT INSTALLDESKTOPSHORTCUT
INSTALLDIR
installdir installdir
INSTALLFOLDER INSTALLFOLDER
INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER INSTALLFOLDERTOBOOTSTRAPPERINSTALLFOLDER
@@ -812,7 +808,6 @@ LMENU
lnks lnks
LOADFROMFILE LOADFROMFILE
LOBYTE LOBYTE
localappdata
LOCALDISPLAY LOCALDISPLAY
localpackage localpackage
LOCALSYSTEM LOCALSYSTEM
@@ -977,7 +972,6 @@ msrc
msstore msstore
mst mst
msvcp msvcp
msvsmon
MTND MTND
MULTIPLEUSE MULTIPLEUSE
multizone multizone
@@ -1284,7 +1278,6 @@ pstm
PStr PStr
pstream pstream
pstrm pstrm
pswd
PSYSTEM PSYSTEM
psz psz
ptb ptb
@@ -1476,16 +1469,12 @@ SHELLDLL
shellex shellex
SHELLEXECUTEINFO SHELLEXECUTEINFO
SHELLEXECUTEINFOW SHELLEXECUTEINFOW
SHELLEXTENSION
SHELLICONSIZE SHELLICONSIZE
SHELLNEWVALUE
SHFILEINFO SHFILEINFO
SHFILEOPSTRUCT SHFILEOPSTRUCT
SHGDN SHGDN
SHGDNF SHGDNF
SHGFI SHGFI
SHGFIICON
SHGFILARGEICON
SHIL SHIL
shinfo shinfo
shlwapi shlwapi
@@ -1519,7 +1508,6 @@ siex
sigdn sigdn
SIGNINGSCENARIO SIGNINGSCENARIO
signtool signtool
Signtool
SINGLEKEY SINGLEKEY
sipolicy sipolicy
SIZEBOX SIZEBOX
@@ -1695,7 +1683,6 @@ TLayout
tlb tlb
tlbimp tlbimp
tlc tlc
TGM
TNP TNP
Toolhelp Toolhelp
toolkitconverters toolkitconverters
@@ -1783,7 +1770,6 @@ uxtheme
vabdq vabdq
validmodulename validmodulename
valuegenerator valuegenerator
VARENUM
variantassignment variantassignment
vcamp vcamp
VCENTER VCENTER
@@ -2003,11 +1989,6 @@ CLSCTXINPROCALL
IIDI IIDI
irow irow
lcid lcid
OTHERUNZOOM
OTHERZOOM
PARENTCLOSING
PARENTOPENING
ppwsz ppwsz
rguid rguid
SCROLLCHILDREN VARTYPE
VARTYPE

View File

@@ -243,4 +243,4 @@ Process Process
# ZoomIt menu items with accelerator keys # ZoomIt menu items with accelerator keys
E&xit E&xit
St&yle St&yle

View File

@@ -18,7 +18,7 @@ public sealed partial class ContentFormControl : UserControl
// LOAD-BEARING: if you don't hang onto a reference to the RenderedAdaptiveCard // LOAD-BEARING: if you don't hang onto a reference to the RenderedAdaptiveCard
// then the GC might clean it up sometime, even while the card is in the UI // then the GC might clean it up sometime, even while the card is in the UI
// tree. If this gets GC'd, then it'll revoke our Action handler, and the // tree. If this gets GC'ed, then it'll revoke our Action handler, and the
// form will do seemingly nothing. // form will do seemingly nothing.
private RenderedAdaptiveCard? _renderedCard; private RenderedAdaptiveCard? _renderedCard;