diff options
author | luz paz <luzpaz@users.noreply.github.com> | 2021-10-28 22:07:06 -0400 |
---|---|---|
committer | luz paz <luzpaz@users.noreply.github.com> | 2021-11-17 06:22:24 -0500 |
commit | 4e4f71515d39dd887f968fb422d6f81ead424fb3 (patch) | |
tree | ab55a21ee8c02b5dc6df1c26d65e59b20480ace2 /project/Win32BuildSetup | |
parent | 3f0508c006a6e76679e0a6d92b277f514990a1e6 (diff) |
Fix various typos in docs, user-facing code, and source comments
Found via `codespell -q 3 -S *.po,./lib/libUPnP/Neptune -L bloaded,busses,inout,lod,medias,parm`
Diffstat (limited to 'project/Win32BuildSetup')
-rw-r--r-- | project/Win32BuildSetup/genNsisInstaller.nsi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/project/Win32BuildSetup/genNsisInstaller.nsi b/project/Win32BuildSetup/genNsisInstaller.nsi index ed8626a567..8127b46b89 100644 --- a/project/Win32BuildSetup/genNsisInstaller.nsi +++ b/project/Win32BuildSetup/genNsisInstaller.nsi @@ -372,7 +372,7 @@ Function .onInit ${Endif} ${If} $HotFixID != "" nsExec::ExecToStack 'cmd /Q /C "%SYSTEMROOT%\System32\wbem\wmic.exe /?"' - Pop $0 ; return value (it always 0 even if an error occured) + Pop $0 ; return value (it always 0 even if an error occurred) Pop $1 ; command output ${If} $0 != 0 ${OrIf} $1 == "" @@ -380,7 +380,7 @@ Function .onInit Quit ${EndIf} nsExec::ExecToStack 'cmd /Q /C "%SYSTEMROOT%\System32\findstr.exe /?"' - Pop $0 ; return value (it always 0 even if an error occured) + Pop $0 ; return value (it always 0 even if an error occurred) Pop $1 ; command output ${If} $0 != 0 ${OrIf} $1 == "" @@ -388,7 +388,7 @@ Function .onInit Quit ${EndIf} nsExec::ExecToStack 'cmd /Q /C "%SYSTEMROOT%\System32\wbem\wmic.exe qfe get hotfixid | %SYSTEMROOT%\System32\findstr.exe "^KB$HotFixID[^0-9]""' - Pop $0 ; return value (it always 0 even if an error occured) + Pop $0 ; return value (it always 0 even if an error occurred) Pop $1 ; command output ${If} $0 != 0 ${OrIf} $1 == "" |