summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Bridgewater <ruben@bridgewater.de>2017-12-17 20:32:53 -0300
committerMyles Borins <mylesborins@google.com>2018-02-12 19:28:27 -0500
commit0ce48f90944bccdcdbb8beb1dc332e5e81d99380 (patch)
tree953eb5fcb28cbf631f728794b69c762b9aed272d
parentf6b4aa62bc890bed863350b27581e7c983c00e29 (diff)
downloadnode-new-0ce48f90944bccdcdbb8beb1dc332e5e81d99380.tar.gz
doc: use dashes instead of asterisks
PR-URL: https://github.com/nodejs/node/pull/17722 Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
-rw-r--r--doc/guides/writing-tests.md10
-rw-r--r--doc/releases.md4
2 files changed, 7 insertions, 7 deletions
diff --git a/doc/guides/writing-tests.md b/doc/guides/writing-tests.md
index 519db97e55..aac098640a 100644
--- a/doc/guides/writing-tests.md
+++ b/doc/guides/writing-tests.md
@@ -233,8 +233,8 @@ const freelist = require('internal/freelist');
When writing assertions, prefer the strict versions:
-* `assert.strictEqual()` over `assert.equal()`
-* `assert.deepStrictEqual()` over `assert.deepEqual()`
+- `assert.strictEqual()` over `assert.equal()`
+- `assert.deepStrictEqual()` over `assert.deepEqual()`
When using `assert.throws()`, if possible, provide the full error message:
@@ -258,9 +258,9 @@ available features in each release.
For example:
-* `let` and `const` over `var`
-* Template literals over string concatenation
-* Arrow functions when appropriate
+- `let` and `const` over `var`
+- Template literals over string concatenation
+- Arrow functions when appropriate
## Naming Test Files
diff --git a/doc/releases.md b/doc/releases.md
index eec99ea3d5..92054e4c3a 100644
--- a/doc/releases.md
+++ b/doc/releases.md
@@ -252,8 +252,8 @@ $ git push <remote> <vx.y.z>
On release proposal branch, edit `src/node_version.h` again and:
-* Increment `NODE_PATCH_VERSION` by one
-* Change `NODE_VERSION_IS_RELEASE` back to `0`
+- Increment `NODE_PATCH_VERSION` by one
+- Change `NODE_VERSION_IS_RELEASE` back to `0`
Commit this change with the following commit message format: