From f28a572f4ffeb68671289bd5ac734962ad8e5a95 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 Related to https://github.com/nodejs/remark-preset-lint-node/pull/94 --- 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/