Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
feat: update source content
Browse files Browse the repository at this point in the history
  • Loading branch information
electron-bot committed Jun 11, 2020
1 parent 07c3efd commit b6b6aaf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions content/current/en-US/docs/tutorial/first-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,10 @@ function createWindow () {
// Some APIs can only be used after this event occurs.
app.whenReady().then(createWindow)

// Quit when all windows are closed.
// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on('window-all-closed', () => {
// On macOS it is common for applications and their menu bar
// to stay active until the user quits explicitly with Cmd + Q
if (process.platform !== 'darwin') {
app.quit()
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"automerge": "ts-node ./script/automerge.ts"
},
"electronLatestStableTag": "v9.0.3",
"electronMasterBranchCommit": "b1574f9e596c0ca8667c79df73cc3fd8b0d44c49",
"electronMasterBranchCommit": "04be1ac4a15700a5b51016af0101945a878854de",
"engines": {
"node": ">=10"
},
Expand Down
4 changes: 2 additions & 2 deletions wordcount.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Stat | Value
---- | -----
total files | 277
total words | 267276
total words | 267278
unique words | 12677
average words per file | 964

Expand All @@ -23,6 +23,6 @@ average words per file | 705
Stat | Value
---- | -----
total files | 7212
total words | 5398355
total words | 5398357
unique words | 90825
average words per file | 748

0 comments on commit b6b6aaf

Please sign in to comment.