Skip to content

Commit c7d4d2d

Browse files
committed
Improve wording
1 parent 173996b commit c7d4d2d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

electron/best-practices.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ ipcRenderer.sendSync("event-key");
1414
ipcMain.on("event-key", event => {});
1515
```
1616

17-
#### Subscribe main's process listeners as soon as it's ready
17+
#### Subscribe main's event listeners as soon as possible
1818

19-
This way the channels are up and initial requests from renderer won't be absorbed.
19+
This way the messages won't get lost.
2020

2121
```js
2222
app.on("ready", () => {

0 commit comments

Comments
 (0)