summaryrefslogtreecommitdiff
path: root/doc/guides/writing-tests.md
diff options
context:
space:
mode:
authorDaijiro Wachi <daijiro.wachi@gmail.com>2017-05-28 22:20:21 +0200
committerDaijiro Wachi <daijiro.wachi@gmail.com>2017-05-30 19:18:48 +0200
commit1d60fc3aa5b7a6032665595c29bdb382bd526e43 (patch)
tree43434f364f452b40ee37e071f47c73a00f52affc /doc/guides/writing-tests.md
parenta85b48cbd37e4c0b1cf2f99f2e9f7d30d7fa34cf (diff)
downloadandroid-node-v8-1d60fc3aa5b7a6032665595c29bdb382bd526e43.tar.gz
android-node-v8-1d60fc3aa5b7a6032665595c29bdb382bd526e43.tar.bz2
android-node-v8-1d60fc3aa5b7a6032665595c29bdb382bd526e43.zip
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 <luigipinca@gmail.com> Reviewed-By: Alexey Orlenko <eaglexrlnk@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'doc/guides/writing-tests.md')
-rw-r--r--doc/guides/writing-tests.md4
1 files changed, 2 insertions, 2 deletions
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
```