Fix module types available in the renderer process

The doc previously stated `only GUI-unrelated` modules are available to the renderer process. I think it should be `only GUI-related`
This commit is contained in:
Antoine Pairet 2015-10-28 11:40:01 +01:00
parent 079796de26
commit 0c5fe03999

View file

@ -3,7 +3,7 @@
The `remote` module provides a simple way to do inter-process communication
(IPC) between the renderer process (web page) and the main process.
In Electron, only GUI-unrelated modules are available in the renderer process.
In Electron, only GUI-related modules are available in the renderer process.
Without the `remote` module, users who want to call a main process API in
the renderer process will have to explicitly send inter-process messages
to the main process. With the `remote` module, you can invoke methods of the