diff --git a/doc/guides/building-node-with-ninja.md b/doc/guides/building-node-with-ninja.md index 1b95b6886792da..5231b73a8cdd6e 100644 --- a/doc/guides/building-node-with-ninja.md +++ b/doc/guides/building-node-with-ninja.md @@ -29,7 +29,7 @@ number of processes to run for [Ninja][] using the environment variable `JOBS`. This will be the equivalent to the `-j` parameter in the regular `make`: ```bash -$ JOBS=12 make +JOBS=12 make ``` ## Producing a debug build @@ -37,7 +37,7 @@ $ JOBS=12 make To create a debug build rather than a release build: ```bash -$ ./configure --ninja --debug && make +./configure --ninja --debug && make ``` [Ninja]: https://ninja-build.org/