Skip to content

Commit ea6b6ab

Browse files
nschonniBridgeAR
authored andcommitted
doc: remove spaces inside code span elements
Applies MarkdownLint MD038 rule PR-URL: #29329 Reviewed-By: Rich Trott <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]>
1 parent 20b9ef9 commit ea6b6ab

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/STYLE_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
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-->

doc/api/buffer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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'`.

doc/guides/contributing/pull-requests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ check with the contributor to see if they intend to continue the work before
440440
checking if they would mind if you took it over (especially if it just has
441441
nits left). When doing so, it is courteous to give the original contributor
442442
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
444444
commit.
445445

446446
### Approving a change

doc/guides/writing-tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ fs.readFile('test-file').then(
249249
### Flags
250250

251251
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
253253
test followed by the flags. For example, to allow a test to require some of the
254254
`internal/*` modules, add the `--expose-internals` flag.
255255
A test that would require `internal/freelist` could start like this:

0 commit comments

Comments
 (0)