File tree 4 files changed +4
-4
lines changed 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 43
43
* Instances should use camelCase.
44
44
* Denote methods with parentheses: ` socket.end() ` instead of ` socket.end ` .
45
45
* Function arguments or object properties should use the following format:
46
- * ``` * `name` {type|type2} Optional description. **Default:** `value`. ```
46
+ * ``` * `name` {type|type2} Optional description. **Default:** `value`. ```
47
47
<!-- lint disable maximum-line-length remark-lint-->
48
48
* For example: <code >* ` byteOffset ` {integer} Index of first byte to expose. ** Default:** ` 0 ` .</code >
49
49
<!-- lint enable maximum-line-length remark-lint-->
Original file line number Diff line number Diff line change @@ -1458,7 +1458,7 @@ changes:
1458
1458
* ` value ` {string|Buffer|Uint8Array|integer} What to search for.
1459
1459
* ` byteOffset ` {integer} Where to begin searching in ` buf ` . If negative, then
1460
1460
offset is calculated from the end of ` buf ` . ** Default:**
1461
- [ ` buf.length ` ] [ ] ` - 1` .
1461
+ [ ` buf.length ` ] [ ] ` - 1 ` .
1462
1462
* ` encoding ` {string} If ` value ` is a string, this is the encoding used to
1463
1463
determine the binary representation of the string that will be searched for in
1464
1464
` buf ` . ** Default:** ` 'utf8' ` .
Original file line number Diff line number Diff line change @@ -440,7 +440,7 @@ check with the contributor to see if they intend to continue the work before
440
440
checking if they would mind if you took it over (especially if it just has
441
441
nits left). When doing so, it is courteous to give the original contributor
442
442
credit for the work they started (either by preserving their name and email
443
- address in the commit log, or by using an ` Author: ` meta-data tag in the
443
+ address in the commit log, or by using an ` Author: ` meta-data tag in the
444
444
commit.
445
445
446
446
### Approving a change
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ fs.readFile('test-file').then(
249
249
### Flags
250
250
251
251
Some tests will require running Node.js with specific command line flags set. To
252
- accomplish this, add a ` // Flags: ` comment in the preamble of the
252
+ accomplish this, add a ` // Flags: ` comment in the preamble of the
253
253
test followed by the flags. For example, to allow a test to require some of the
254
254
` internal/* ` modules, add the ` --expose-internals ` flag.
255
255
A test that would require ` internal/freelist ` could start like this:
You can’t perform that action at this time.
0 commit comments