From 1d60fc3aa5b7a6032665595c29bdb382bd526e43 Mon Sep 17 00:00:00 2001 From: Daijiro Wachi Date: Sun, 28 May 2017 22:20:21 +0200 Subject: doc: fix doc styles BUILDING.md + L122: Missing code-language flag + L170: Strong should use `*` as a marker doc/changelogs/CHANGELOG_V6.md + L1494: Don't pad `emphasis` with inner spaces doc/guides/maintaining-V8.md + L3: Don't use multiple top level headings + L16: Don't use multiple top level headings + L40: Don't use multiple top level headings + L124: Don't use multiple top level headings + L182: Missing code-language flag + L223: Don't use multiple top level headings + L288: Don't use multiple top level headings + L307: Don't use multiple top level headings doc/guides/writing-tests.md + L322: Missing code-language flag + L329: Missing code-language flag doc/releases.md + L299: Missing code-language flag PR-URL: https://github.com/nodejs/node/pull/13270 Reviewed-By: Luigi Pinca Reviewed-By: Alexey Orlenko Reviewed-By: Michael Dawson --- doc/guides/writing-tests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/guides/writing-tests.md') diff --git a/doc/guides/writing-tests.md b/doc/guides/writing-tests.md index 4d15f73ae8..b9e614dc25 100644 --- a/doc/guides/writing-tests.md +++ b/doc/guides/writing-tests.md @@ -319,14 +319,14 @@ static void at_exit_callback(void* arg) { ``` Next add the test to the `sources` in the `cctest` target in node.gyp: -``` +```console 'sources': [ 'test/cctest/test_env.cc', ... ], ``` The test can be executed by running the `cctest` target: -``` +```console $ make cctest ``` -- cgit v1.2.3