File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 4343* Instances should use camelCase.
4444* Denote methods with parentheses: ` socket.end() ` instead of ` socket.end ` .
4545* 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`. ```
4747 <!-- lint disable maximum-line-length remark-lint-->
4848 * For example: <code >* ` byteOffset ` {integer} Index of first byte to expose. ** Default:** ` 0 ` .</code >
4949 <!-- lint enable maximum-line-length remark-lint-->
Original file line number Diff line number Diff line change @@ -1458,7 +1458,7 @@ changes:
14581458* ` value ` {string|Buffer|Uint8Array|integer} What to search for.
14591459* ` byteOffset ` {integer} Where to begin searching in ` buf ` . If negative, then
14601460 offset is calculated from the end of ` buf ` . ** Default:**
1461- [ ` buf.length ` ] [ ] ` - 1` .
1461+ [ ` buf.length ` ] [ ] ` - 1 ` .
14621462* ` encoding ` {string} If ` value ` is a string, this is the encoding used to
14631463 determine the binary representation of the string that will be searched for in
14641464 ` 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
440440checking if they would mind if you took it over (especially if it just has
441441nits left). When doing so, it is courteous to give the original contributor
442442credit 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
444444commit.
445445
446446### Approving a change
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ fs.readFile('test-file').then(
249249### Flags
250250
251251Some 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
253253test followed by the flags. For example, to allow a test to require some of the
254254` internal/* ` modules, add the ` --expose-internals ` flag.
255255A test that would require ` internal/freelist ` could start like this:
You can’t perform that action at this time.
0 commit comments