docs: fix typos across tutorial documentation (#49736)

This commit is contained in:
Ronald Eddy Jr
2026-02-17 14:47:45 -05:00
committed by GitHub
parent c98cf69f40
commit 459a88f788
24 changed files with 38 additions and 38 deletions

View File

@@ -771,7 +771,7 @@ ipcMain.handle('get-secrets', (e) => {
})
function validateSender (frame) {
// Value the host of the URL using an actual URL parser and an allowlist
// Validate the host of the URL using an actual URL parser and an allowlist
if ((new URL(frame.url)).host === 'electronjs.org') return true
return false
}