Merge pull request #12847 from electron/friendly-docs

Remove judgmental docs terms
This commit is contained in:
John Kleinschmidt 2018-05-07 12:41:17 -04:00 committed by GitHub
commit c13d1e8ae6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 21 additions and 24 deletions

View file

@ -56,8 +56,8 @@ const electron = require('electron')
All Electron APIs are assigned a process type. Many of them can only be
used from the main process, some of them only from a renderer process,
some from both. The documentation for the individual API will clearly
state which process they can be used from.
some from both. The documentation for each individual API will
state which process it can be used from.
A window in Electron is for instance created using the `BrowserWindow`
class. It is only available in the main process.
@ -133,8 +133,7 @@ compiled to be used with Electron.
The vast majority of Node.js modules are _not_ native. Only 400 out of the
~650.000 modules are native. However, if you do need native modules, please
consult [this guide on how to recompile them for Electron][native-node] (it's
easy).
consult [this guide on how to recompile them for Electron][native-node].
[node-docs]: https://nodejs.org/en/docs/
[security]: ./security.md

View file

@ -28,7 +28,7 @@ beginners, using a command line tool is likely to be helpful*.
A "complete tool for building modern Electron applications". Electron Forge
unifies the existing (and well maintained) build tools for Electron development
into a simple, easy to use package so that anyone can jump right in to Electron
into a cohesive package so that anyone can jump right in to Electron
development.
Forge comes with [ready-to-use templates](https://electronforge.io/templates) for popular

View file

@ -31,7 +31,7 @@ There are several major changes from our 1.x strategy outlined below. Each chang
1. Strict use of semver
2. Introduction of semver-compliant `-beta` tags
3. Introduction of [conventional commit messages](https://conventionalcommits.org/)
4. Clearly defined stabilization branches
4. Well-defined stabilization branches
5. The `master` branch is versionless; only stabilization branches contain version information
We will cover in detail how git branching works, how npm tagging works, what developers should expect to see, and how one can backport changes.

View file

@ -19,7 +19,7 @@ menu.append(new MenuItem({
}))
```
It's easy to configure different key combinations based on the user's operating system.
You can configure different key combinations based on the user's operating system.
```js
{

View file

@ -1,6 +1,6 @@
# Recent Documents (Windows & macOS)
Windows and macOS provide easy access to a list of recent documents opened by
Windows and macOS provide access to a list of recent documents opened by
the application via JumpList or dock menu, respectively.
__JumpList:__

View file

@ -78,7 +78,7 @@ following things:
## Modules that rely on `prebuild`
[`prebuild`](https://github.com/mafintosh/prebuild) provides a way to easily
[`prebuild`](https://github.com/mafintosh/prebuild) provides a way to
publish native Node modules with prebuilt binaries for multiple versions of Node
and Electron.