Skip to content

Commit

Permalink
doc: use dashes instead of asterisks
Browse files Browse the repository at this point in the history
  • Loading branch information
BridgeAR committed Dec 21, 2017
1 parent f6810ac commit eef95c3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions doc/guides/writing-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,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:

Expand All @@ -263,9 +263,9 @@ 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

Expand Down
4 changes: 2 additions & 2 deletions doc/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,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:

Expand Down

0 comments on commit eef95c3

Please sign in to comment.