From 6e8709df5bca8d01d0376628bf468956d1f6ee4f Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Mon, 1 Jun 2020 21:37:23 -0400 Subject: [PATCH] doc: remove shell dollar signs without output MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Related to https://github.com/nodejs/remark-preset-lint-node/pull/94 PR-URL: https://github.com/nodejs/node/pull/33692 Reviewed-By: Michaƫl Zasso Reviewed-By: Ruben Bridgewater Reviewed-By: Colin Ihrig Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott --- doc/guides/building-node-with-ninja.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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/