File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ the [native modules](../tutorial/using-native-node-modules.md)).
66
77Electron also provides some extra built-in modules for developing native
88desktop applications. Some modules are only available on the main process, some
9- are only available on the renderer process (web page), and some can be used on
9+ are only available in the renderer process (web page), and some can be used in
1010both processes.
1111
1212The basic rule is: if a module is
@@ -30,7 +30,7 @@ app.on('ready', function() {
3030});
3131```
3232
33- The render process is no different than a normal web page, except for the extra
33+ The renderer process is no different than a normal web page, except for the extra
3434ability to use node modules:
3535
3636``` html
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ Emitted when dragged files are dropped in the tray icon.
123123
124124The ` Tray ` module has the following methods:
125125
126- ** Note** : Some methods are only available on specific operating systems and area
126+ ** Note** : Some methods are only available on specific operating systems and are
127127labeled as such.
128128
129129### ` Tray.destroy() `
You can’t perform that action at this time.
0 commit comments