Skip to content

Commit 0ce48f9

Browse files
BridgeARMylesBorins
authored andcommitted
doc: use dashes instead of asterisks
PR-URL: #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>
1 parent f6b4aa6 commit 0ce48f9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/guides/writing-tests.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ const freelist = require('internal/freelist');
233233

234234
When writing assertions, prefer the strict versions:
235235

236-
* `assert.strictEqual()` over `assert.equal()`
237-
* `assert.deepStrictEqual()` over `assert.deepEqual()`
236+
- `assert.strictEqual()` over `assert.equal()`
237+
- `assert.deepStrictEqual()` over `assert.deepEqual()`
238238

239239
When using `assert.throws()`, if possible, provide the full error message:
240240

@@ -258,9 +258,9 @@ available features in each release.
258258

259259
For example:
260260

261-
* `let` and `const` over `var`
262-
* Template literals over string concatenation
263-
* Arrow functions when appropriate
261+
- `let` and `const` over `var`
262+
- Template literals over string concatenation
263+
- Arrow functions when appropriate
264264

265265
## Naming Test Files
266266

doc/releases.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -252,8 +252,8 @@ $ git push <remote> <vx.y.z>
252252

253253
On release proposal branch, edit `src/node_version.h` again and:
254254

255-
* Increment `NODE_PATCH_VERSION` by one
256-
* Change `NODE_VERSION_IS_RELEASE` back to `0`
255+
- Increment `NODE_PATCH_VERSION` by one
256+
- Change `NODE_VERSION_IS_RELEASE` back to `0`
257257

258258
Commit this change with the following commit message format:
259259

0 commit comments

Comments
 (0)