add some markdown links

This commit is contained in:
Toinane 2017-11-29 12:13:45 +01:00
parent 0a0d88a5dc
commit 3d4ef66775
No known key found for this signature in database
GPG key ID: 1A3729C1B6D59115
6 changed files with 10 additions and 10 deletions

View file

@ -55,7 +55,7 @@ Send a message to the main process asynchronously via `channel`, you can also
send arbitrary arguments. Arguments will be serialized in JSON internally and
hence no functions or prototype chain will be included.
The main process handles it by listening for `channel` with `ipcMain` module.
The main process handles it by listening for `channel` with [`ipcMain`](ipc-main.md) module.
### `ipcRenderer.sendSync(channel[, arg1][, arg2][, ...])`
@ -68,7 +68,7 @@ Send a message to the main process synchronously via `channel`, you can also
send arbitrary arguments. Arguments will be serialized in JSON internally and
hence no functions or prototype chain will be included.
The main process handles it by listening for `channel` with `ipcMain` module,
The main process handles it by listening for `channel` with [`ipcMain`](ipc-main.md) module,
and replies by setting `event.returnValue`.
**Note:** Sending a synchronous message will block the whole renderer process,