Skip to content

Commit 1be0086

Browse files
BridgeARMylesBorins
authored andcommitted
doc: use dashes instead of asterisks
PR-URL: #17722 Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Daniel Bevenius <[email protected]>
1 parent 26fbb0f commit 1be0086

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
@@ -238,8 +238,8 @@ const freelist = require('internal/freelist');
238238

239239
When writing assertions, prefer the strict versions:
240240

241-
* `assert.strictEqual()` over `assert.equal()`
242-
* `assert.deepStrictEqual()` over `assert.deepEqual()`
241+
- `assert.strictEqual()` over `assert.equal()`
242+
- `assert.deepStrictEqual()` over `assert.deepEqual()`
243243

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

@@ -263,9 +263,9 @@ in each release.
263263

264264
For example:
265265

266-
* `let` and `const` over `var`
267-
* Template literals over string concatenation
268-
* Arrow functions when appropriate
266+
- `let` and `const` over `var`
267+
- Template literals over string concatenation
268+
- Arrow functions when appropriate
269269

270270
## Naming Test Files
271271

doc/releases.md

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

376376
On release proposal branch, edit `src/node_version.h` again and:
377377

378-
* Increment `NODE_PATCH_VERSION` by one
379-
* Change `NODE_VERSION_IS_RELEASE` back to `0`
378+
- Increment `NODE_PATCH_VERSION` by one
379+
- Change `NODE_VERSION_IS_RELEASE` back to `0`
380380

381381
Commit this change with the following commit message format:
382382

0 commit comments

Comments
 (0)