File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -238,8 +238,8 @@ const freelist = require('internal/freelist');
238
238
239
239
When writing assertions, prefer the strict versions:
240
240
241
- * ` assert.strictEqual() ` over ` assert.equal() `
242
- * ` assert.deepStrictEqual() ` over ` assert.deepEqual() `
241
+ - ` assert.strictEqual() ` over ` assert.equal() `
242
+ - ` assert.deepStrictEqual() ` over ` assert.deepEqual() `
243
243
244
244
When using ` assert.throws() ` , if possible, provide the full error message:
245
245
@@ -263,9 +263,9 @@ in each release.
263
263
264
264
For example:
265
265
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
269
269
270
270
## Naming Test Files
271
271
Original file line number Diff line number Diff line change @@ -252,8 +252,8 @@ $ git push <remote> <vx.y.z>
252
252
253
253
On release proposal branch, edit ` src/node_version.h ` again and:
254
254
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 `
257
257
258
258
Commit this change with the following commit message format:
259
259
You can’t perform that action at this time.
0 commit comments