doc: fix inconsistency in documentation for building

Specifically, fix the inconsistency where the documentation
suggests running "$ make test" instead of "$ make -j4 test".
The "-j4" flag uses multiple processes, making the command
faster.

Fixes: https://github.com/nodejs/node/issues/19919

PR-URL: https://github.com/nodejs/node/pull/20091
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
Spencer Greene 2018-04-16 20:46:25 -04:00 committed by Trivikram Kamat
parent e32eddc550
commit a456775efa

View File

@ -179,10 +179,10 @@ If you are running tests prior to submitting a Pull Request, the recommended
command is:
```console
$ make test
$ make -j4 test
```
`make test` does a full check on the codebase, including running linters and
`make -j4 test` does a full check on the codebase, including running linters and
documentation tests.
Optionally, continue below.